mirror of https://github.com/kubernetes/kops.git
Merge pull request #39 from justinsb/docs_3
Initial docs for how to apply a configuration change
This commit is contained in:
commit
806fc8012c
|
|
@ -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`
|
||||
|
||||
Loading…
Reference in New Issue