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