Use --master-count in testing for backwards compatibility

This commit is contained in:
Ciprian Hacman 2023-08-05 09:17:44 +03:00
parent ba7b4e716a
commit ab18f79405
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ func (d *deployer) createCluster(zones []string, adminAccess string, yes bool) e
args = append(args, createArgs...) args = append(args, createArgs...)
} }
args = appendIfUnset(args, "--admin-access", adminAccess) 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, "--master-volume-size", "48")
args = appendIfUnset(args, "--node-count", "4") args = appendIfUnset(args, "--node-count", "4")
args = appendIfUnset(args, "--node-volume-size", "48") args = appendIfUnset(args, "--node-volume-size", "48")