Reputation: 474
I'm changing instance type of GKE cluster nodes from x to y, I have made new node-pool with the y instances all good but how do I move all the helm applications from one node-pool to the new one ?
Upvotes: 0
Views: 1260
Reputation: 2744
Give your node pools label
s, e.g node-pool-type = old
and node-pool-type = new
. In your pod definition, include match-labels = new
in spec.selector
and restart your pods.
Upvotes: 2