How to stop kubernetes cluster created in AWS avoid incurring cost
How to stop kubernetes cluster created in AWS avoid incurring cost
Stop kubernetes cluster
Get your instances group
kops edit ig nodes
edit nodes
kops get ig
edit your master and slave nodes
kops edit ig <master-name>
Change maxsize and minsize to 0
minsize: 0
maxSize: 0
Update your cluster
kops update cluster --yes
Rolling changes to stop the cluster
kops rolling-update cluster --yes
Rolling changes to start the cluster
kops rolling-update cluster --cloudonly --force --yea
Comments
Post a Comment