From cfe75f9422ce8d8a6ed4e7f7addc1cf40e89bcca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Tue, 26 Mar 2024 10:20:17 +0100 Subject: [PATCH] k8s: confidential: Update cpuid to its latest release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since v2.2.6 it can detect TDX guests on Azure, so let's bump it even if Azure peer-pods are not currently used as part of our CI. Fixes: #9348 Signed-off-by: Fabiano FidĂȘncio --- .../confidential/unencrypted/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/kubernetes/runtimeclass_workloads/confidential/unencrypted/Dockerfile b/tests/integration/kubernetes/runtimeclass_workloads/confidential/unencrypted/Dockerfile index d093c7fe86..9605c19528 100644 --- a/tests/integration/kubernetes/runtimeclass_workloads/confidential/unencrypted/Dockerfile +++ b/tests/integration/kubernetes/runtimeclass_workloads/confidential/unencrypted/Dockerfile @@ -16,9 +16,9 @@ RUN apk add --no-cache curl openssh-server RUN /bin/sh -c \ 'ARCH=$(uname -m) && \ [[ "${ARCH}" == "x86_64" ]] && \ - curl -LO https://github.com/klauspost/cpuid/releases/download/v2.2.5/cpuid-Linux_x86_64_2.2.5.tar.gz && \ - tar -xvzf cpuid-Linux_x86_64_2.2.5.tar.gz -C /usr/bin && \ - rm -rf cpuid-Linux_x86_64_2.2.5.tar.gz && \ + curl -LO https://github.com/klauspost/cpuid/releases/download/v2.2.7/cpuid-Linux_x86_64_2.2.7.tar.gz && \ + tar -xvzf cpuid-Linux_x86_64_2.2.7.tar.gz -C /usr/bin && \ + rm -rf cpuid-Linux_x86_64_2.2.7.tar.gz && \ rm -f /usr/bin/LICENSE' || true # This is done just to avoid the following error starting sshd