mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
fix missing ","
This commit is contained in:
parent
ee2fffb0ca
commit
35cfc717d3
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user