-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update pulumi eks to 0.41.0 #19
Conversation
Thank you for debugging this Jimmy. When updating a package it needs to be done through the package manager. Not manually changing the version in package.json. Without this the lock file and the package versions are conflicting. |
Thanks @harryttd. I noticed there wasn't a |
The package manager being used in this project is yarn, not npm. Only yarn commands should be used, and updating the package will update the lock file. There should only be a package-lock.json file in an npm project. We also want to keep the version exact and not with |
You can run |
f7d2262
to
2137a62
Compare
Thanks @harryttd . How does this look now? |
It's still not pinned see my comment:
|
Ah I thought a caret |
Thank you. Please squash. I'm not going to release yet. But for Daniel, he can just install the version he needs on his own in his project. |
AWS updated Kubernetes on EKS to 1.22 a few months ago
This broke the api version when deploying the vpc-cni with pulumi.
A similar issue described here
https://github.com/pulumi/pulumi-eks/blob/cc78896f6453516b0c406064652557f52813cf1e/nodejs/eks/cni/aws-k8s-cni.yaml#L202
Updating
pulumi-eks
to0.41.0
fixes the above issue.Which then results in the following error if your
kubectl
is a lower version.Updating
kubectl
resolves this so maybe a disclaimer about that might be good somewhere.