@@ -60,6 +60,7 @@ The following table provides the support status for various distros with regards
6060| [Ubuntu 20.04](#ubuntu-2004-focal) | 1.16.2 | 1.18 | - | - |
6161| [Ubuntu 22.04](#ubuntu-2204-jammy) | 1.23 | 1.24 | - | - |
6262| [Ubuntu 24.04](#ubuntu-2404-noble) | 1.29 | 1.31 | - | - |
63+ | [Ubuntu 26.04](#ubuntu-2604-resolute) | 1.36 | - | - | - |
6364
6465## Supported Distros
6566
@@ -332,7 +333,7 @@ aws ec2 describe-images --region us-east-1 --output table \
332333 --filters " Name=name,Values=ubuntu/images/hvm-ssd/ubuntu-jammy-22.04-*-*"
333334
334335# Google Cloud Platform (GCP)
335- gcloud compute images list --filter ubuntu-2204-jammy-v \
336+ gcloud compute images list --filter ubuntu-2204-jammy \
336337 --project ubuntu-os-cloud
337338
338339# Microsoft Azure
@@ -354,14 +355,36 @@ aws ec2 describe-images --region us-east-1 --output table \
354355 --filters " Name=name,Values=ubuntu/images/hvm-ssd-gp3/ubuntu-noble-24.04-*-*"
355356
356357# Google Cloud Platform (GCP)
357- gcloud compute images list --filter ubuntu-2204-jammy-v \
358+ gcloud compute images list --filter ubuntu-2404-noble \
358359 --project ubuntu-os-cloud
359360
360361# Microsoft Azure
361362az vm image list --all --output table \
362363 --publisher Canonical --offer 0001-com-ubuntu-server-jammy --sku 22_04-lts-gen2
363364```
364365
366+ ### Ubuntu 26.04 (Resolute)
367+
368+ Support for Ubuntu 26.04 is based on Kernel version ** 7.0** .
369+
370+ Available images can be listed using:
371+
372+ ``` bash
373+ # Amazon Web Services (AWS)
374+ aws ec2 describe-images --region us-east-1 --output table \
375+ --owners 099720109477 \
376+ --query " sort_by(Images, &CreationDate)[*].[CreationDate,Name,ImageId]" \
377+ --filters " Name=name,Values=ubuntu/images/hvm-ssd-gp3/ubuntu-resolute-26.04-*-*"
378+
379+ # Google Cloud Platform (GCP)
380+ gcloud compute images list --filter ubuntu-2604-resolute-v \
381+ --project ubuntu-os-cloud
382+
383+ # Microsoft Azure
384+ az vm image list --all --output table \
385+ --publisher Canonical --offer 0001-com-ubuntu-server-resolute --sku 26_04-lts-gen2
386+ ```
387+
365388## Owner aliases
366389
367390kOps supports owner aliases for the official accounts of supported distros:
0 commit comments