// NewKubeControllerManager creates a new hyperkube Server object that includes the // description and flags. func NewKubeControllerManager() *Server { s := options.NewCMServer() hks := Server{ SimpleUsage: "controller-manager", Long: "A server that runs a set of active components. This includes replication controllers, service endpoints and nodes.", Run: func(_ *Server, args []string) error { return app.Run(s) }, } s.AddFlags(hks.Flags(), app.KnownControllers(), app.ControllersDisabledByDefault.List()) return &hks }
func main() { s := options.NewCMServer() s.AddFlags(pflag.CommandLine, app.KnownControllers(), app.ControllersDisabledByDefault.List()) flag.InitFlags() logs.InitLogs() defer logs.FlushLogs() verflag.PrintAndExitIfRequested() if err := app.Run(s); err != nil { fmt.Fprintf(os.Stderr, "%v\n", err) os.Exit(1) } }