Unverified Commit c26b737b authored by Hussein Galal's avatar Hussein Galal Committed by GitHub

Mark disable components flags as experimental (#3018)

parent 4d1f9eda
...@@ -344,17 +344,17 @@ func NewServerCommand(action func(*cli.Context) error) cli.Command { ...@@ -344,17 +344,17 @@ func NewServerCommand(action func(*cli.Context) error) cli.Command {
}, },
cli.BoolFlag{ cli.BoolFlag{
Name: "disable-api-server", Name: "disable-api-server",
Usage: "(components) Disable running api server", Usage: "(experimental/components) Disable running api server",
Destination: &ServerConfig.DisableAPIServer, Destination: &ServerConfig.DisableAPIServer,
}, },
cli.BoolFlag{ cli.BoolFlag{
Name: "disable-controller-manager", Name: "disable-controller-manager",
Usage: "(components) Disable running kube-controller-manager", Usage: "(experimental/components) Disable running kube-controller-manager",
Destination: &ServerConfig.DisableControllerManager, Destination: &ServerConfig.DisableControllerManager,
}, },
cli.BoolFlag{ cli.BoolFlag{
Name: "disable-etcd", Name: "disable-etcd",
Usage: "(components) Disable running etcd", Usage: "(experimental/components) Disable running etcd",
Destination: &ServerConfig.DisableETCD, Destination: &ServerConfig.DisableETCD,
}, },
NodeNameFlag, NodeNameFlag,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment