Merge pull request #5859 from posquit0/patch-3

Fix mis-typing in documentation
This commit is contained in:
k8s-ci-robot 2018-10-03 11:02:33 -07:00 committed by GitHub
commit eda61d5981
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ export ZONE="us-west-1a"
export MASTER_ZONES="us-west-1a"
export NAME=k8s.example.com
export K8S_VERSION=1.6.4
export NETWORKCIDER="10.240.0.0/16"
export NETWORKCIDR="10.240.0.0/16"
export MASTER_SIZE="m3.large"
export WORKER_SIZE="m4.large"
```
@ -28,7 +28,7 @@ kops create cluster $NAME \
--node-count=3 \
--node-size="$WORKER_SIZE" \
--master-size="$MASTER_SIZE" \
--network-cidr=${NETWORKCIDER} \
--network-cidr=${NETWORKCIDR} \
--dns-zone=ZVO7KL181S5AP \
--ssh-public-key=$HOME/.ssh/lab_no_password.pub
```