Merge pull request #39 from justinsb/docs_3

Initial docs for how to apply a configuration change
This commit is contained in:
Justin Santa Barbara 2016-07-05 13:06:27 -04:00 committed by GitHub
commit 806fc8012c
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
## Changing a cluster configuration
(This procedure is currently unnecessarily convoluted. Expect it to get streamlined!)
Edit the cluster spec: `kops edit cluster --name ${NAME}`
View the changes you are going to apply `kops create cluster --name ${DRYRUN} --dryrun`
Apply the changes for real `kops create cluster --name ${DRYRUN}`
See which nodes need to be restarted `kops rolling-update cluster --name ${NAME} --region ${REGION}`
Apply the rolling-update `kops rolling-update cluster --name ${NAME} --region ${REGION} --yes`