Commit 35cfc717 authored by Thorsten Schifferdecker's avatar Thorsten Schifferdecker Committed by Darren Shepherd

fix missing ","

parent ee2fffb0
......@@ -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 {
......
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