mirror of https://github.com/kubernetes/kops.git
Initial docs for how to apply a configuration change
The procedure could definitely use some work!
This commit is contained in:
parent
e1e36ded1f
commit
a2d7dc017c
|
@ -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