https://pulumi.com logo
Title
m

most-lighter-95902

03/17/2023, 5:32 PM
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

steep-toddler-94095

03/23/2023, 1:20 AM
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

most-lighter-95902

03/23/2023, 1:20 AM
Got it thank you