Merge pull request #11887 from srikiz/DO-Increase-Droplet-Size-e2e-tests

[DigitalOcean] Increase droplet size for e2e tests
This commit is contained in:
Kubernetes Prow Robot 2021-06-28 23:16:40 -07:00 committed by GitHub
commit 4adf37cc7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -133,8 +133,8 @@ func (d *deployer) createCluster(zones []string, adminAccess string) error {
}
args = appendIfUnset(args, "--vpc", strings.Split(d.ClusterName, ".")[0])
case "digitalocean":
args = appendIfUnset(args, "--master-size", "s-8vcpu-16gb")
args = appendIfUnset(args, "--node-size", "s-8vcpu-16gb")
args = appendIfUnset(args, "--master-size", "c2-16vcpu-32gb")
args = appendIfUnset(args, "--node-size", "c2-16vcpu-32gb")
}
if d.terraform != nil {