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
`createManagedNodeGroup` had a fallback on the cluster name for `nodeGroupName` which disabled the auto naming feature which led `deleteBeforeReplace` to be true.
Fixes#491
Problem description
A managed node group created throuh
createManagedNodeGroup
will not have an auto generated name on AWS.The issue is the same as #294 but is caused by
pulumi-eks/nodejs/eks/nodegroup.ts
Line 850 in 4498d12
introduced in #302:
It causes the node group to be deleted before being replaced in case the config change (e.g. isntanceType). Is there a reason to not auto name it?
Errors & Logs
Reproducing the issue
Creating a node group and changing it's instanceType should reproduce the issue.
Suggestions for a fix
Removing the fallback to
name
should work.The text was updated successfully, but these errors were encountered: