mirror of https://github.com/kubernetes/kops.git
Use --master-count in testing for backwards compatibility
This commit is contained in:
parent
ba7b4e716a
commit
ab18f79405
|
@ -134,7 +134,7 @@ func (d *deployer) createCluster(zones []string, adminAccess string, yes bool) e
|
|||
args = append(args, createArgs...)
|
||||
}
|
||||
args = appendIfUnset(args, "--admin-access", adminAccess)
|
||||
args = appendIfUnset(args, "--control-plane-count", fmt.Sprintf("%d", d.ControlPlaneCount))
|
||||
args = appendIfUnset(args, "--master-count", fmt.Sprintf("%d", d.ControlPlaneCount))
|
||||
args = appendIfUnset(args, "--master-volume-size", "48")
|
||||
args = appendIfUnset(args, "--node-count", "4")
|
||||
args = appendIfUnset(args, "--node-volume-size", "48")
|
||||
|
|
Loading…
Reference in New Issue