Skip to content

Commit

Permalink
Merge pull request #311 from toabctl/main-aws-eks-noble
Browse files Browse the repository at this point in the history
feat(aws): update find-ubuntu-images for EKS Noble images
  • Loading branch information
k-dimple authored Dec 20, 2024
2 parents 2b2a647 + 674d6ba commit c3486db
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions aws/aws-how-to/instances/find-ubuntu-images.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,18 +53,19 @@ Images for EC2 and EKS

.. code-block::
aws ssm get-parameters --names /aws/service/canonical/ubuntu/eks/22.04/1.31/stable/current/amd64/hvm/ebs-gp2/ami-id
aws ssm get-parameters --names /aws/service/canonical/ubuntu/eks/24.04/1.31/stable/current/amd64/hvm/ebs-gp3/ami-id
The format for the parameter is:

.. code-block::
ubuntu/$EKS_PRODUCT/$RELEASE/$K8S_VERSION/stable/current/$ARCH/hvm/ebs-gp2/ami-id
ubuntu/$EKS_PRODUCT/$RELEASE/$K8S_VERSION/stable/current/$ARCH/hvm/$VOL_TYPE/ami-id
* EKS_PRODUCT: `eks` or `eks-pro`
* RELEASE: `jammy`, `22.04` (for EKS 1.29 or greater, or EKS Pro); `focal`, `20.04` (for EKS <= 1.29)
* RELEASE: `noble`, `24.04` (for EKS 1.31 or greater, or EKS Pro); `jammy`, `22.04` (for EKS 1.29 or greater, or EKS Pro); `focal`, `20.04` (for EKS <= 1.29)
* K8S_VERSION: one of the supported EKS versions (e.g. `1.31`)
* ARCH: `amd64` or `arm64`
* VOL_TYPE: `ebs-gp2` (for <= Jammy) and `ebs-gp3` (for >= Noble)

In the generated output, the "Value" field will have the required AMI ID. It can be used to instantiate the corresponding image using the ``ec2 run-instances`` command as explained :ref:`here <instantiate-image-on-ec2>`.

Expand Down

0 comments on commit c3486db

Please sign in to comment.