tpl/aws/docs/kops.md in kite-0.1.0 vs tpl/aws/docs/kops.md in kite-0.2.0

- old
+ new

@@ -20,19 +20,16 @@ ``` export AWS_ACCESS_KEY_ID=<access key> export AWS_SECRET_ACCESS_KEY=<secret key> ``` -Create cluster configuration +Deploy the `kops` cluster ``` -kops create cluster --name *kops.example.com* --state "s3://kops-example-state-store" --zones *eu-central-1b* --ssh-public-key *path to SSH key* +./bin/kops-deploy.sh ``` -Review and edit cluster configuration if needed -``` -kops edit cluster --name *kops.example.com* --state "s3://kops-example-state-store" -``` +### Teardown -Build the cluster +To tear down the kops cluster you've created, just run ``` -kops update cluster --name *kops.example.com* --state "s3://kops-example-state-store" --yes +./bin/kops-delete.sh ```