-
Hi, I am setting up a EKS cluster with terraform and using an EKS manged node group eks_managed_node_groups = {
initial = {
instance_types = ["m6i.large"]
ami_type = "BOTTLEROCKET_x86_64"
platform = "bottlerocket"
# release_version = "something here?"
create_security_group = false
min_size = 2
max_size = 3
desired_size = 2
} And if it is |
Beta Was this translation helpful? Give feedback.
Answered by
yeazelm
Jan 22, 2024
Replies: 1 comment 8 replies
-
Hi @Raboo! Although we always recommend running the latest Bottlerocket release, I think the key you're looking for is |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I believe this maps to the SSM parameters which have several different versions under the hood. You should be able to use
ami_release_version = 1.18.0-7452c37e
orami_release_version = 1.18.0
since the specific variant (k8s 1.25 vs another one) is tied to your cluster version. To find this version, you can use Bottlerocket's SSM parameters (https://docs.aws.amazon.com/eks/latest/userguide/retrieve-ami-id-bottlerocket.html) by calling the path/aws/service/bottlerocket/aws-k8s-1.25/x86_64/latest/image_version
if you want to find it explicitly.