From d37473ff4469cb62f2b5c8fe142209be624c9afc Mon Sep 17 00:00:00 2001 From: Stefan Prodan Date: Thu, 20 Feb 2025 16:00:20 +0200 Subject: [PATCH] Update flux-cli image Signed-off-by: Stefan Prodan --- .github/workflows/conformance.yaml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/conformance.yaml b/.github/workflows/conformance.yaml index 6cfad735..40690e4d 100644 --- a/.github/workflows/conformance.yaml +++ b/.github/workflows/conformance.yaml @@ -169,7 +169,7 @@ jobs: strategy: matrix: # Keep this list up-to-date with https://endoflife.date/red-hat-openshift - OPENSHIFT_VERSION: [ 4.16.0-okd, 4.17.0-okd ] + OPENSHIFT_VERSION: [ 4.17.0-okd ] fail-fast: false steps: - name: Checkout diff --git a/Dockerfile b/Dockerfile index 23d20220..041dadf8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN apk add --no-cache ca-certificates curl ARG ARCH=linux/amd64 ARG KUBECTL_VER=1.32.0 -RUN curl -sL https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VER}/bin/${ARCH}/kubectl \ +RUN curl -sL https://dl.k8s.io/release/v${KUBECTL_VER}/bin/linux/${ARCH}/kubectl \ -o /usr/local/bin/kubectl && chmod +x /usr/local/bin/kubectl && \ kubectl version --client=true