Hi, I created an eks cluster via Pulumi’s eks pack...
# kubernetes
m
Hi, I created an eks cluster via Pulumi’s eks package and upon upgrading the kubernetes version to 1.25 in aws console, I’m running into vpc-cni issues. It looks like my vpc-cni version is a bit outdated (
amazon-k8s-cni-init:v1.11.0, amazon-k8s-cni:v1.11.0
) - how can I update this version? When I re-up pulumi stack that has
eks.Cluster
, it doesn’t seem to update the vpc-cni. Thanks in advance for your help!
s
you should be using the Addon Resource to manage the versioning of these EKS managed plugins. you can further use this if you want to always have the latest supported addon version https://www.pulumi.com/registry/packages/aws/api-docs/eks/getaddonversion/
m
Got it thank you