-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Auto-resolver isn't auto-resolving to the newest AMI. #218
Comments
@brentley - thanks for raising the issue. I'll look into it now. |
Running the following:
I see that i get the ami as I'll fix this. |
On looking further its because 2 images are being returned and we are currently just picking the first and not taking into consideration creation time: https://github.com/weaveworks/eksctl/blob/master/pkg/ami/api.go#L78 My bad. Updating this now. |
The auto AMI resolver will now pick the latest AMI version to use. Previously it just picked the first image and used that. Issue #218
* Auto resolver updated The auto AMI resolver will now pick the latest AMI version to use. Previously it just picked the first image and used that. Issue #218 * Static Resolver updated to use latest AMIs The static resolver has been updated to use the latest (v24) images for the EKS nodes. This applies to both normal and GPU instance types.
looks good!
|
Merge snapshot to master branch
When using auto, in us-west-2, we get
ami-08cab282f9979fc7a
which isamazon-eks-node-v23
but we should getami-0a54c984b9f908c81
which isamazon-eks-node-v24
But when I use
--node-ami
to specify the newest ami id, it appears to work, so that's cool.Originally posted by @brentley in #197 (comment)
The text was updated successfully, but these errors were encountered: