blob: cfabc5960e61dbc48add72e7953766889fbfe8b5 [file] [log] [blame]
Matthias Andreas Benkard832a54e2019-01-29 09:27:38 +01001// Copyright 2018 The Kubernetes Authors.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package main
16
17import (
18 "flag"
19 "os"
20 "runtime"
21
22 "k8s.io/apimachinery/pkg/util/wait"
23 "k8s.io/apiserver/pkg/util/logs"
24
25 "github.com/kubernetes-incubator/metrics-server/cmd/metrics-server/app"
26)
27
28func main() {
29 logs.InitLogs()
30 defer logs.FlushLogs()
31
32 if len(os.Getenv("GOMAXPROCS")) == 0 {
33 runtime.GOMAXPROCS(runtime.NumCPU())
34 }
35
36 cmd := app.NewCommandStartMetricsServer(os.Stdout, os.Stderr, wait.NeverStop)
37 cmd.Flags().AddGoFlagSet(flag.CommandLine)
38 if err := cmd.Execute(); err != nil {
39 panic(err)
40 }
41}