kubernetes/cmd/hyperkube/main.go

121 lines
3.7 KiB
Go
Raw Normal View History

2015-02-08 12:35:02 +08:00
/*
Copyright 2014 The Kubernetes Authors.
2015-02-08 12:35:02 +08:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// A binary that can morph into all of the other kubernetes binaries. You can
// also soft-link to it busybox style.
//
2015-02-08 12:35:02 +08:00
package main
import (
2018-01-18 01:34:04 +08:00
goflag "flag"
"math/rand"
2015-02-08 12:35:02 +08:00
"os"
2018-01-18 01:34:04 +08:00
"path/filepath"
"time"
2018-01-18 01:34:04 +08:00
"github.com/spf13/cobra"
"github.com/spf13/pflag"
cliflag "k8s.io/component-base/cli/flag"
"k8s.io/component-base/logs"
2018-01-18 01:34:04 +08:00
cloudcontrollermanager "k8s.io/kubernetes/cmd/cloud-controller-manager/app"
kubeapiserver "k8s.io/kubernetes/cmd/kube-apiserver/app"
kubecontrollermanager "k8s.io/kubernetes/cmd/kube-controller-manager/app"
kubeproxy "k8s.io/kubernetes/cmd/kube-proxy/app"
kubescheduler "k8s.io/kubernetes/cmd/kube-scheduler/app"
kubelet "k8s.io/kubernetes/cmd/kubelet/app"
_ "k8s.io/kubernetes/pkg/client/metrics/prometheus" // for client metric registration
2018-01-18 01:34:04 +08:00
kubectl "k8s.io/kubernetes/pkg/kubectl/cmd"
_ "k8s.io/kubernetes/pkg/version/prometheus" // for version metric registration
2015-02-08 12:35:02 +08:00
)
func main() {
rand.Seed(time.Now().UnixNano())
2018-01-18 01:34:04 +08:00
hyperkubeCommand, allCommandFns := NewHyperKubeCommand()
2018-01-18 01:34:04 +08:00
// TODO: once we switch everything over to Cobra commands, we can go back to calling
// cliflag.InitFlags() (by removing its pflag.Parse() call). For now, we have to set the
2018-01-18 01:34:04 +08:00
// normalize func and add the go flag set by hand.
pflag.CommandLine.SetNormalizeFunc(cliflag.WordSepNormalizeFunc)
2018-01-18 01:34:04 +08:00
pflag.CommandLine.AddGoFlagSet(goflag.CommandLine)
// cliflag.InitFlags()
2018-01-18 01:34:04 +08:00
logs.InitLogs()
defer logs.FlushLogs()
2015-02-08 12:35:02 +08:00
2018-01-18 01:34:04 +08:00
basename := filepath.Base(os.Args[0])
if err := commandFor(basename, hyperkubeCommand, allCommandFns).Execute(); err != nil {
os.Exit(1)
}
2018-01-18 01:34:04 +08:00
}
func commandFor(basename string, defaultCommand *cobra.Command, commands []func() *cobra.Command) *cobra.Command {
for _, commandFn := range commands {
command := commandFn()
if command.Name() == basename {
return command
}
for _, alias := range command.Aliases {
if alias == basename {
return command
}
}
}
return defaultCommand
}
// NewHyperKubeCommand is the entry point for hyperkube
func NewHyperKubeCommand() (*cobra.Command, []func() *cobra.Command) {
2018-12-12 04:13:57 +08:00
// these have to be functions since the command is polymorphic. Cobra wants you to be top level
2018-01-18 01:34:04 +08:00
// command to get executed
apiserver := func() *cobra.Command { return kubeapiserver.NewAPIServerCommand() }
2019-04-24 01:02:32 +08:00
controller := func() *cobra.Command { return kubecontrollermanager.NewControllerManagerCommand() }
proxy := func() *cobra.Command { return kubeproxy.NewProxyCommand() }
scheduler := func() *cobra.Command { return kubescheduler.NewSchedulerCommand() }
2018-01-18 01:34:04 +08:00
kubectlCmd := func() *cobra.Command { return kubectl.NewDefaultKubectlCommand() }
kubelet := func() *cobra.Command { return kubelet.NewKubeletCommand() }
2018-01-18 01:34:04 +08:00
cloudController := func() *cobra.Command { return cloudcontrollermanager.NewCloudControllerManagerCommand() }
2015-02-08 12:35:02 +08:00
2018-01-18 01:34:04 +08:00
commandFns := []func() *cobra.Command{
apiserver,
controller,
proxy,
scheduler,
kubectlCmd,
kubelet,
cloudController,
}
cmd := &cobra.Command{
Use: "hyperkube",
Short: "Request a new project",
Run: func(cmd *cobra.Command, args []string) {
if len(args) != 0 {
2018-01-18 01:34:04 +08:00
cmd.Help()
os.Exit(1)
}
},
}
for i := range commandFns {
cmd.AddCommand(commandFns[i]())
}
return cmd, commandFns
}