From 825b1cd233893ec087fa0a71cfa73d4df6a5493e Mon Sep 17 00:00:00 2001 From: Mikko Ylinen Date: Mon, 9 Jun 2025 15:57:26 +0300 Subject: [PATCH] kata-deploy: accept 25.04 as supported distro for TDX the latest Canonical TDX release supports 25.04 / Plucky as well. Users experimenting with the latest goodies in the 25.04 TDX enablement won't get Kata deployed properly. This change accepts 25.04 as supported distro for TDX. Signed-off-by: Mikko Ylinen --- tools/packaging/kata-deploy/scripts/kata-deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/packaging/kata-deploy/scripts/kata-deploy.sh b/tools/packaging/kata-deploy/scripts/kata-deploy.sh index e765c0d3fe..6607d83414 100755 --- a/tools/packaging/kata-deploy/scripts/kata-deploy.sh +++ b/tools/packaging/kata-deploy/scripts/kata-deploy.sh @@ -307,7 +307,7 @@ function get_tdx_distro_instructions() { case ${distro} in ubuntu) - echo "https://github.com/canonical/tdx/tree/noble-24.04" + echo "https://github.com/canonical/tdx/tree/3.3" ;; centos) echo "https://sigs.centos.org/virt/tdx" @@ -424,7 +424,7 @@ function install_artifacts() { case ${ID} in ubuntu) case ${VERSION_ID} in - 24.04) + 24.04|25.04) tdx_supported ${ID} ${VERSION_ID} ${kata_config_file} ;; *)