// NewCMServer creates a new CMServer with a default config. func NewCMServer() *CMServer { s := &CMServer{ CMServer: app.NewCMServer(), } s.CloudProvider = mesos.ProviderName s.UseHostPortEndpoints = true return s }
// NewQingControllerManager creates a new hyperqing Server object that includes the // description and flags. func NewQingControllerManager() *Server { s := controllermgr.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 s.Run(args) }, } s.AddFlags(hks.Flags()) return &hks }
func main() { runtime.GOMAXPROCS(runtime.NumCPU()) s := app.NewCMServer() s.AddFlags(pflag.CommandLine) util.InitFlags() util.InitLogs() defer util.FlushLogs() verflag.PrintAndExitIfRequested() if err := s.Run(pflag.CommandLine.Args()); err != nil { fmt.Fprintf(os.Stderr, "%v\n", err) os.Exit(1) } }