Advanced example

This commit is contained in:
Kris Childress 2016-12-12 15:12:21 -07:00
parent 22502fc0d4
commit 49f00369eb
2 changed files with 19 additions and 2 deletions

17
docs/advanced_create.md Normal file
View File

@ -0,0 +1,17 @@
# Advanced Example
Example Create Cluster Command for HA / Private Topology
```
kops create cluster \
--node-count 3 \
--zones us-west-2a,us-west-2b,us-west-2c \
--master-zones us-west-2a,us-west-2b,us-west-2c \
--dns-zone kubernetes.com \
--node-size t2.medium \
--master-size t2.medium \
--topology private \
--networking weave \
--image 293135079892/k8s-1.4-debian-jessie-amd64-hvm-ebs-2016-11-16 \
${NAME}
```

View File

@ -149,7 +149,7 @@ We will need to note which availability zones are available to us. In this examp
aws ec2 describe-availability-zones --region us-west-1
```
Lets form our create cluster command. This is the most basic example, a more verbose example on can be found [here]()
Lets form our create cluster command. This is the most basic example, a more verbose example on can be found [here](advanced_create.md)
```bash
kops create cluster \