great-sunset-355
02/17/2025, 1:16 PMaws-auth
config map is pupulated with the role?
My cluster was provisioned with a different role and I had to then run eksctl create iamidentitymapping
.
We are using @pulumi/eks
2.8.1 with the local zone vpc.
Can you also chime in how painful the update to v3 might be?modern-zebra-45309
02/17/2025, 1:58 PMaws-auth
? You should be able to patch the ConfigMap.
Also note that aws-auth
is deprecated in favor of access entries. Example for granting access to an IAM role: https://github.com/pulumi/pulumi-eks/blob/dc8f5bbea5bf9a3ed11a29cfc91bf8da4f318b44/examples/cluster-py/__main__.py#L67-L80quick-house-41860
02/18/2025, 7:47 AMeksctl
can also be created by the component using the roleMappings
property (https://www.pulumi.com/registry/packages/eks/api-docs/cluster/#rolemappings_nodejs). That way there's no drift between the configmap and IaC.
This doc here should give you an idea of what needs to be done for the v3 migration: https://www.pulumi.com/registry/packages/eks/how-to-guides/v3-migration/#gracefully-upgrading-node-groupsquick-house-41860
02/18/2025, 7:48 AMgreat-sunset-355
02/18/2025, 8:31 AM