diff --git a/docs/contributing/testing.md b/docs/contributing/testing.md index 630b64131e..d8e07f1c85 100644 --- a/docs/contributing/testing.md +++ b/docs/contributing/testing.md @@ -86,7 +86,7 @@ kubetest2 kops \ If you don't specify any additional flags, the kOps deployer Go module will create a kubernetes cluster using the following defaults. ```shell -kops create cluster --name my.testcluster.com --admin-access 82.20.196.118/32 --cloud aws --kubernetes-version v1.20.2 --master-count 1 --master-volume-size 48 --node-count 4 --node-volume-size 48 --override cluster.spec.nodePortAccess=0.0.0.0/0 --ssh-public-key /home/ubuntu/.ssh/id_rsa.pub --yes --zones --master-size c5.large --networking calico +kops create cluster --name my.testcluster.com --admin-access --cloud aws --kubernetes-version v1.20.2 --master-count 1 --master-volume-size 48 --node-count 4 --node-volume-size 48 --override cluster.spec.nodePortAccess=0.0.0.0/0 --ssh-public-key /home/ubuntu/.ssh/id_rsa.pub --yes --zones --master-size c5.large --networking calico ``` For the `--zones` flag, the kOps deployer will select a random zone based on the `--cloud-provider` flag, for `aws` the full list of AWS zones can be found [here](https://github.com/kubernetes/kops/blob/master/tests/e2e/kubetest2-kops/aws/zones.go) and for `gce` the full list of GCE zones can be found [here](https://github.com/kubernetes/kops/blob/master/tests/e2e/kubetest2-kops/gce/zones.go).