You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With respect to the docs, right now this is what we suggest to the users
# collect old nodegroup names
old_nodegroups="$(eksctl get ng --cluster=<clusterName> --output=json | jq -r '.[].Name')"# create new nodegroups based on config file
eksctl create nodegroup --config-file=<path># delete old onesforngin$old_nodegroups;do eksctl delete nodegroup --cluster=<clusterName> --name=$ng;done
After some refactoring (#665, #670 & #671), we are ready to add --config-file and --only, so that eksctl delete ng matches eksctl create ng, and then we can add --only-missing as well.
This would improve upgrade docs.
The text was updated successfully, but these errors were encountered: