From 286c605179622831664b0aa829c234619d9ebfe7 Mon Sep 17 00:00:00 2001 From: Bryan Cox Date: Fri, 29 May 2026 11:13:54 -0400 Subject: [PATCH] fix(ci): pin azure-cli to 2.72.0 in e2e Dockerfile azure-cli >= 2.73.0 requires python3.12, which is not available in the E4S/EUS repos that CI now uses after openshift/release#79773 switched from mirror2.openshift.com (GA content) to cdn.redhat.com. Pin to the last version (2.72.0) that depends on python3.9, which is available in E4S. Co-Authored-By: Claude Opus 4.6 --- Dockerfile.e2e | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.e2e b/Dockerfile.e2e index 68086ed8bae4..f163a1c773d9 100644 --- a/Dockerfile.e2e +++ b/Dockerfile.e2e @@ -30,5 +30,5 @@ COPY --from=builder /hypershift/hack/run-reqserving-e2e.sh /hypershift/hack/run- RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc && \ dnf install -y https://packages.microsoft.com/config/rhel/9/packages-microsoft-prod.rpm && \ mv /etc/yum.repos.d/microsoft-prod.repo /etc/yum.repos.art/ci/ && \ - dnf install -y azure-cli && \ + dnf install -y azure-cli-2.72.0 && \ dnf clean all