fix missing ","

This commit is contained in:
Thorsten Schifferdecker 2019-03-03 18:22:08 +01:00 committed by Darren Shepherd
parent ee2fffb0ca
commit 35cfc717d3

View File

@ -102,7 +102,7 @@ func controllerManager(cfg *config.Control, runtime *config.ControlRuntime) {
"--cluster-cidr", cfg.ClusterIPRange.String(),
"--root-ca-file", runtime.TokenCA,
"--port", "0",
"--bind-address", "127.0.0.1"
"--bind-address", "127.0.0.1",
"--secure-port", "10252",
}
if cfg.NoLeaderElect {
@ -122,7 +122,7 @@ func scheduler(cfg *config.Control, runtime *config.ControlRuntime) {
args := []string{
"--kubeconfig", runtime.KubeConfigSystem,
"--port", "0",
"--bind-address", "127.0.0.1"
"--bind-address", "127.0.0.1",
"--secure-port", "10251",
}
if cfg.NoLeaderElect {