From b1edd725227b834d4e5d8c32d5ccfc1f7ce82711 Mon Sep 17 00:00:00 2001 From: elchenberg Date: Thu, 5 Sep 2024 12:15:19 +0200 Subject: [PATCH 1/4] add v4.16 Signed-off-by: elchenberg --- .github/workflows/build.yml | 1 + Makefile | 2 +- README.md | 2 ++ v4.16/Dockerfile | 71 +++++++++++++++++++++++++++++++++++++ 4 files changed, 75 insertions(+), 1 deletion(-) create mode 100644 v4.16/Dockerfile diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 14e7a52..838a003 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,6 +19,7 @@ jobs: - "4.13" - "4.14" - "4.15" + - "4.16" steps: - uses: actions/checkout@v4 - name: Set up Docker Buildx diff --git a/Makefile b/Makefile index 977cb6a..e413791 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # For supported versions see: # https://access.redhat.com/support/policy/updates/openshift/#dates -VERSIONS = v4.11 v4.12 v4.13 v4.14 v4.15 +VERSIONS = v4.11 v4.12 v4.13 v4.14 v4.15 v4.16 # Also update in `.github/workflows/build.yml`! all: clean $(addsuffix /Dockerfile, $(VERSIONS)) diff --git a/README.md b/README.md index 6dbf664..0215fe4 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,8 @@ Also ships the binaries for `helm`, `kustomize`, `kubeval`, `sops`, `yq` and Pyt The built images are available from [Docker Hub][hub] and [Red Hat Quay.io][quay] +- `docker.io/appuio/oc:v4.16` +- `quay.io/appuio/oc:v4.16` - `docker.io/appuio/oc:v4.15` - `quay.io/appuio/oc:v4.15` - `docker.io/appuio/oc:v4.14` diff --git a/v4.16/Dockerfile b/v4.16/Dockerfile new file mode 100644 index 0000000..765dfd3 --- /dev/null +++ b/v4.16/Dockerfile @@ -0,0 +1,71 @@ +FROM registry.access.redhat.com/ubi9-minimal:9.4-1194 + +ENV VERSION=latest-4.16 \ + HELM3_VERSION=v3.15.4 \ + KUBEVAL_VERSION=v0.16.1 \ + KUSTOMIZE_VERSION=v5.4.3 \ + SEISO_VERSION=v1.0.0 \ + SOPS_VERSION=v3.9.0 \ + YQ_VERSION=v4.44.3 \ + ARCHIVE=openshift-client-linux \ + HELM3_SHA256SUM=11400fecfc07fd6f034863e4e0c4c4445594673fd2a129e701fe41f31170cfa9 \ + KUBEVAL_SHA256SUM=2d6f9bda1423b93787fa05d9e8dfce2fc1190fefbcd9d0936b9635f3f78ba790 \ + KUSTOMIZE_SHA256SUM=3669470b454d865c8184d6bce78df05e977c9aea31c30df3c669317d43bcc7a7 \ + SEISO_SHA256SUM=40484059c23993b4e8d6b0add3debebb31ed1155b49a5ebdae987698b3176202 \ + SHA256SUM= \ + YQ_SHA256SUM=a2c097180dd884a8d50c956ee16a9cec070f30a7947cf4ebf87d5f36213e9ed7 \ + HELM_RELEASES_URL="https://get.helm.sh" \ + KUBEVAL_RELEASES_URL="https://github.com/instrumenta/kubeval/releases/download" \ + KUSTOMIZE_RELEASES_URL="https://github.com/kubernetes-sigs/kustomize/releases/download" \ + OKD_DOWNLOAD_BASE_URL="https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/ocp" \ + SEISO_RELEASES_URL="https://github.com/appuio/seiso/releases/download" \ + SOPS_RELEASES_URL="https://github.com/getsops/sops/releases/download" \ + YQ_RELEASES_URL="https://github.com/mikefarah/yq/releases/download" \ + JQ_URL="https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64" \ + OC_PLUGINS_REPO="https://github.com/appuio/oc-plugins" \ + KUBECTL_PLUGINS_PATH="/opt/kube/plugins" + +RUN set -x && \ + URL="${OKD_DOWNLOAD_BASE_URL}/${VERSION}/${ARCHIVE}.tar.gz" && \ + HELM3_URL="${HELM_RELEASES_URL}/helm-${HELM3_VERSION}-linux-amd64.tar.gz" && \ + KUBEVAL_URL="${KUBEVAL_RELEASES_URL}/${KUBEVAL_VERSION}/kubeval-linux-amd64.tar.gz" && \ + KUSTOMIZE_URL="${KUSTOMIZE_RELEASES_URL}/kustomize%2F${KUSTOMIZE_VERSION}/kustomize_${KUSTOMIZE_VERSION}_linux_amd64.tar.gz" && \ + SEISO_URL="${SEISO_RELEASES_URL}/${SEISO_VERSION}/seiso_linux_amd64" && \ + SOPS_URL="${SOPS_RELEASES_URL}/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.amd64" && \ + YQ_URL="${YQ_RELEASES_URL}/${YQ_VERSION}/yq_linux_amd64" && \ + microdnf install -y tar gzip git python3 diffutils && \ + cd /tmp && \ + curl -sSL "$URL" -o /tmp/oc.tgz && \ + curl -sSL "$HELM3_URL" -o /tmp/helm3.tgz && \ + curl -sSL "$JQ_URL" -o /bin/jq && \ + curl -sSL "$KUBEVAL_URL" -o /tmp/kubeval.tgz && \ + curl -sSL "$KUSTOMIZE_URL" -o /tmp/kustomize.tgz && \ + curl -sSL "$SEISO_URL" -o /bin/seiso && \ + curl -sSL "$SOPS_URL" -o /bin/sops && \ + curl -sSL "$YQ_URL" -o /bin/yq && \ + echo "${HELM3_SHA256SUM} /tmp/helm3.tgz" > /tmp/HELM3_CHECKSUM && \ + echo "${KUBEVAL_SHA256SUM} /tmp/kubeval.tgz" > /tmp/KUBEVAL_CHECKSUM && \ + echo "${KUSTOMIZE_SHA256SUM} /tmp/kustomize.tgz" > /tmp/KUSTOMIZE_CHECKSUM && \ + echo "${SEISO_SHA256SUM} /bin/seiso" > /tmp/SEISO_CHECKSUM && \ + echo "${SHA256SUM} /tmp/oc.tgz" > /tmp/CHECKSUM && \ + echo "${YQ_SHA256SUM} /bin/yq" > /tmp/YQ_CHECKSUM && \ + [ ! -z "$SHA256SUM" ] && sha256sum -c /tmp/CHECKSUM || echo "oc sha not checked" && \ + sha256sum -c /tmp/HELM3_CHECKSUM && \ + sha256sum -c /tmp/KUBEVAL_CHECKSUM && \ + sha256sum -c /tmp/KUSTOMIZE_CHECKSUM && \ + sha256sum -c /tmp/SEISO_CHECKSUM && \ + sha256sum -c /tmp/YQ_CHECKSUM && \ + tar -xzvf /tmp/oc.tgz && \ + rm -rf -v "/tmp/linux-amd64" && \ + tar -xzvf /tmp/helm3.tgz && \ + mv -v "/tmp/linux-amd64/helm" /bin/helm3 && \ + tar -xzvf /tmp/kustomize.tgz && \ + tar -xzvf /tmp/kubeval.tgz && \ + chmod 755 /tmp/kustomize /bin/seiso /bin/jq /bin/sops /bin/yq && \ + mv -v "/tmp/oc" /bin/ && \ + mv -v "/tmp/kubeval" /bin/ && \ + mv -v "/tmp/kustomize" /bin/ && \ + ln -s /bin/oc /bin/kubectl && \ + ln -s /bin/helm3 /bin/helm && \ + rm -rf /tmp/* && \ + git clone --depth=1 ${OC_PLUGINS_REPO} ${KUBECTL_PLUGINS_PATH} From 32f61d7710ed060bf38a8ca5559ee88c05c02845 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 5 Sep 2024 15:19:04 +0200 Subject: [PATCH 2/4] maint support for 4.11 ended in feb 2024 --- .github/workflows/build.yml | 1 - Makefile | 2 +- README.md | 2 -- v4.11/Dockerfile | 71 ------------------------------------- 4 files changed, 1 insertion(+), 75 deletions(-) delete mode 100644 v4.11/Dockerfile diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 838a003..123ee02 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,6 @@ jobs: strategy: matrix: oc: - - "4.11" - "4.12" - "4.13" - "4.14" diff --git a/Makefile b/Makefile index e413791..5ddca02 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # For supported versions see: # https://access.redhat.com/support/policy/updates/openshift/#dates -VERSIONS = v4.11 v4.12 v4.13 v4.14 v4.15 v4.16 +VERSIONS = v4.12 v4.13 v4.14 v4.15 v4.16 # Also update in `.github/workflows/build.yml`! all: clean $(addsuffix /Dockerfile, $(VERSIONS)) diff --git a/README.md b/README.md index 0215fe4..aaa2ba1 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,6 @@ The built images are available from [Docker Hub][hub] and [Red Hat Quay.io][quay - `quay.io/appuio/oc:v4.13` - `docker.io/appuio/oc:v4.12` - `quay.io/appuio/oc:v4.12` -- `docker.io/appuio/oc:v4.11` -- `quay.io/appuio/oc:v4.11` ## Development diff --git a/v4.11/Dockerfile b/v4.11/Dockerfile deleted file mode 100644 index 0ffa7ee..0000000 --- a/v4.11/Dockerfile +++ /dev/null @@ -1,71 +0,0 @@ -FROM registry.access.redhat.com/ubi9-minimal:9.4-1194 - -ENV VERSION=latest-4.11 \ - HELM3_VERSION=v3.15.3 \ - KUBEVAL_VERSION=v0.16.1 \ - KUSTOMIZE_VERSION=v5.4.3 \ - SEISO_VERSION=v1.0.0 \ - SOPS_VERSION=v3.9.0 \ - YQ_VERSION=v4.44.2 \ - ARCHIVE=openshift-client-linux \ - HELM3_SHA256SUM=ad871aecb0c9fd96aa6702f6b79e87556c8998c2e714a4959bf71ee31282ac9c \ - KUBEVAL_SHA256SUM=2d6f9bda1423b93787fa05d9e8dfce2fc1190fefbcd9d0936b9635f3f78ba790 \ - KUSTOMIZE_SHA256SUM=3669470b454d865c8184d6bce78df05e977c9aea31c30df3c669317d43bcc7a7 \ - SEISO_SHA256SUM=40484059c23993b4e8d6b0add3debebb31ed1155b49a5ebdae987698b3176202 \ - SHA256SUM= \ - YQ_SHA256SUM=246b781828353a59fb04ffaada241f78a8f3f25c623047b40306def1f6806e71 \ - HELM_RELEASES_URL="https://get.helm.sh" \ - KUBEVAL_RELEASES_URL="https://github.com/instrumenta/kubeval/releases/download" \ - KUSTOMIZE_RELEASES_URL="https://github.com/kubernetes-sigs/kustomize/releases/download" \ - OKD_DOWNLOAD_BASE_URL="https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/ocp" \ - SEISO_RELEASES_URL="https://github.com/appuio/seiso/releases/download" \ - SOPS_RELEASES_URL="https://github.com/getsops/sops/releases/download" \ - YQ_RELEASES_URL="https://github.com/mikefarah/yq/releases/download" \ - JQ_URL="https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64" \ - OC_PLUGINS_REPO="https://github.com/appuio/oc-plugins" \ - KUBECTL_PLUGINS_PATH="/opt/kube/plugins" - -RUN set -x && \ - URL="${OKD_DOWNLOAD_BASE_URL}/${VERSION}/${ARCHIVE}.tar.gz" && \ - HELM3_URL="${HELM_RELEASES_URL}/helm-${HELM3_VERSION}-linux-amd64.tar.gz" && \ - KUBEVAL_URL="${KUBEVAL_RELEASES_URL}/${KUBEVAL_VERSION}/kubeval-linux-amd64.tar.gz" && \ - KUSTOMIZE_URL="${KUSTOMIZE_RELEASES_URL}/kustomize%2F${KUSTOMIZE_VERSION}/kustomize_${KUSTOMIZE_VERSION}_linux_amd64.tar.gz" && \ - SEISO_URL="${SEISO_RELEASES_URL}/${SEISO_VERSION}/seiso_linux_amd64" && \ - SOPS_URL="${SOPS_RELEASES_URL}/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.amd64" && \ - YQ_URL="${YQ_RELEASES_URL}/${YQ_VERSION}/yq_linux_amd64" && \ - microdnf install -y tar gzip git python3 diffutils && \ - cd /tmp && \ - curl -sSL "$URL" -o /tmp/oc.tgz && \ - curl -sSL "$HELM3_URL" -o /tmp/helm3.tgz && \ - curl -sSL "$JQ_URL" -o /bin/jq && \ - curl -sSL "$KUBEVAL_URL" -o /tmp/kubeval.tgz && \ - curl -sSL "$KUSTOMIZE_URL" -o /tmp/kustomize.tgz && \ - curl -sSL "$SEISO_URL" -o /bin/seiso && \ - curl -sSL "$SOPS_URL" -o /bin/sops && \ - curl -sSL "$YQ_URL" -o /bin/yq && \ - echo "${HELM3_SHA256SUM} /tmp/helm3.tgz" > /tmp/HELM3_CHECKSUM && \ - echo "${KUBEVAL_SHA256SUM} /tmp/kubeval.tgz" > /tmp/KUBEVAL_CHECKSUM && \ - echo "${KUSTOMIZE_SHA256SUM} /tmp/kustomize.tgz" > /tmp/KUSTOMIZE_CHECKSUM && \ - echo "${SEISO_SHA256SUM} /bin/seiso" > /tmp/SEISO_CHECKSUM && \ - echo "${SHA256SUM} /tmp/oc.tgz" > /tmp/CHECKSUM && \ - echo "${YQ_SHA256SUM} /bin/yq" > /tmp/YQ_CHECKSUM && \ - [ ! -z "$SHA256SUM" ] && sha256sum -c /tmp/CHECKSUM || echo "oc sha not checked" && \ - sha256sum -c /tmp/HELM3_CHECKSUM && \ - sha256sum -c /tmp/KUBEVAL_CHECKSUM && \ - sha256sum -c /tmp/KUSTOMIZE_CHECKSUM && \ - sha256sum -c /tmp/SEISO_CHECKSUM && \ - sha256sum -c /tmp/YQ_CHECKSUM && \ - tar -xzvf /tmp/oc.tgz && \ - rm -rf -v "/tmp/linux-amd64" && \ - tar -xzvf /tmp/helm3.tgz && \ - mv -v "/tmp/linux-amd64/helm" /bin/helm3 && \ - tar -xzvf /tmp/kustomize.tgz && \ - tar -xzvf /tmp/kubeval.tgz && \ - chmod 755 /tmp/kustomize /bin/seiso /bin/jq /bin/sops /bin/yq && \ - mv -v "/tmp/oc" /bin/ && \ - mv -v "/tmp/kubeval" /bin/ && \ - mv -v "/tmp/kustomize" /bin/ && \ - ln -s /bin/oc /bin/kubectl && \ - ln -s /bin/helm3 /bin/helm && \ - rm -rf /tmp/* && \ - git clone --depth=1 ${OC_PLUGINS_REPO} ${KUBECTL_PLUGINS_PATH} From 87f0ea32eadc7bad4048e7fc6b5dc459352ebd41 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 5 Sep 2024 15:19:23 +0200 Subject: [PATCH 3/4] bump ubi9 image build number --- src/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Dockerfile b/src/Dockerfile index 358b9f3..5562cba 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9-minimal:9.4-1194 +FROM registry.access.redhat.com/ubi9-minimal:9.4-1227 ENV VERSION=%%VERSION%% \ HELM3_VERSION=%%HELM3_VERSION%% \ From 6cf2ceb897770acf02be334256b4965005f7dd45 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 5 Sep 2024 15:21:00 +0200 Subject: [PATCH 4/4] bump tool versions --- v4.12/Dockerfile | 10 +++++----- v4.13/Dockerfile | 10 +++++----- v4.14/Dockerfile | 10 +++++----- v4.15/Dockerfile | 10 +++++----- v4.16/Dockerfile | 2 +- 5 files changed, 21 insertions(+), 21 deletions(-) diff --git a/v4.12/Dockerfile b/v4.12/Dockerfile index d4753a9..4da84ac 100644 --- a/v4.12/Dockerfile +++ b/v4.12/Dockerfile @@ -1,19 +1,19 @@ -FROM registry.access.redhat.com/ubi9-minimal:9.4-1194 +FROM registry.access.redhat.com/ubi9-minimal:9.4-1227 ENV VERSION=latest-4.12 \ - HELM3_VERSION=v3.15.3 \ + HELM3_VERSION=v3.15.4 \ KUBEVAL_VERSION=v0.16.1 \ KUSTOMIZE_VERSION=v5.4.3 \ SEISO_VERSION=v1.0.0 \ SOPS_VERSION=v3.9.0 \ - YQ_VERSION=v4.44.2 \ + YQ_VERSION=v4.44.3 \ ARCHIVE=openshift-client-linux \ - HELM3_SHA256SUM=ad871aecb0c9fd96aa6702f6b79e87556c8998c2e714a4959bf71ee31282ac9c \ + HELM3_SHA256SUM=11400fecfc07fd6f034863e4e0c4c4445594673fd2a129e701fe41f31170cfa9 \ KUBEVAL_SHA256SUM=2d6f9bda1423b93787fa05d9e8dfce2fc1190fefbcd9d0936b9635f3f78ba790 \ KUSTOMIZE_SHA256SUM=3669470b454d865c8184d6bce78df05e977c9aea31c30df3c669317d43bcc7a7 \ SEISO_SHA256SUM=40484059c23993b4e8d6b0add3debebb31ed1155b49a5ebdae987698b3176202 \ SHA256SUM= \ - YQ_SHA256SUM=246b781828353a59fb04ffaada241f78a8f3f25c623047b40306def1f6806e71 \ + YQ_SHA256SUM=a2c097180dd884a8d50c956ee16a9cec070f30a7947cf4ebf87d5f36213e9ed7 \ HELM_RELEASES_URL="https://get.helm.sh" \ KUBEVAL_RELEASES_URL="https://github.com/instrumenta/kubeval/releases/download" \ KUSTOMIZE_RELEASES_URL="https://github.com/kubernetes-sigs/kustomize/releases/download" \ diff --git a/v4.13/Dockerfile b/v4.13/Dockerfile index d9073f8..c5fcdba 100644 --- a/v4.13/Dockerfile +++ b/v4.13/Dockerfile @@ -1,19 +1,19 @@ -FROM registry.access.redhat.com/ubi9-minimal:9.4-1194 +FROM registry.access.redhat.com/ubi9-minimal:9.4-1227 ENV VERSION=latest-4.13 \ - HELM3_VERSION=v3.15.3 \ + HELM3_VERSION=v3.15.4 \ KUBEVAL_VERSION=v0.16.1 \ KUSTOMIZE_VERSION=v5.4.3 \ SEISO_VERSION=v1.0.0 \ SOPS_VERSION=v3.9.0 \ - YQ_VERSION=v4.44.2 \ + YQ_VERSION=v4.44.3 \ ARCHIVE=openshift-client-linux \ - HELM3_SHA256SUM=ad871aecb0c9fd96aa6702f6b79e87556c8998c2e714a4959bf71ee31282ac9c \ + HELM3_SHA256SUM=11400fecfc07fd6f034863e4e0c4c4445594673fd2a129e701fe41f31170cfa9 \ KUBEVAL_SHA256SUM=2d6f9bda1423b93787fa05d9e8dfce2fc1190fefbcd9d0936b9635f3f78ba790 \ KUSTOMIZE_SHA256SUM=3669470b454d865c8184d6bce78df05e977c9aea31c30df3c669317d43bcc7a7 \ SEISO_SHA256SUM=40484059c23993b4e8d6b0add3debebb31ed1155b49a5ebdae987698b3176202 \ SHA256SUM= \ - YQ_SHA256SUM=246b781828353a59fb04ffaada241f78a8f3f25c623047b40306def1f6806e71 \ + YQ_SHA256SUM=a2c097180dd884a8d50c956ee16a9cec070f30a7947cf4ebf87d5f36213e9ed7 \ HELM_RELEASES_URL="https://get.helm.sh" \ KUBEVAL_RELEASES_URL="https://github.com/instrumenta/kubeval/releases/download" \ KUSTOMIZE_RELEASES_URL="https://github.com/kubernetes-sigs/kustomize/releases/download" \ diff --git a/v4.14/Dockerfile b/v4.14/Dockerfile index faa6f3d..bfbd18b 100644 --- a/v4.14/Dockerfile +++ b/v4.14/Dockerfile @@ -1,19 +1,19 @@ -FROM registry.access.redhat.com/ubi9-minimal:9.4-1194 +FROM registry.access.redhat.com/ubi9-minimal:9.4-1227 ENV VERSION=latest-4.14 \ - HELM3_VERSION=v3.15.3 \ + HELM3_VERSION=v3.15.4 \ KUBEVAL_VERSION=v0.16.1 \ KUSTOMIZE_VERSION=v5.4.3 \ SEISO_VERSION=v1.0.0 \ SOPS_VERSION=v3.9.0 \ - YQ_VERSION=v4.44.2 \ + YQ_VERSION=v4.44.3 \ ARCHIVE=openshift-client-linux \ - HELM3_SHA256SUM=ad871aecb0c9fd96aa6702f6b79e87556c8998c2e714a4959bf71ee31282ac9c \ + HELM3_SHA256SUM=11400fecfc07fd6f034863e4e0c4c4445594673fd2a129e701fe41f31170cfa9 \ KUBEVAL_SHA256SUM=2d6f9bda1423b93787fa05d9e8dfce2fc1190fefbcd9d0936b9635f3f78ba790 \ KUSTOMIZE_SHA256SUM=3669470b454d865c8184d6bce78df05e977c9aea31c30df3c669317d43bcc7a7 \ SEISO_SHA256SUM=40484059c23993b4e8d6b0add3debebb31ed1155b49a5ebdae987698b3176202 \ SHA256SUM= \ - YQ_SHA256SUM=246b781828353a59fb04ffaada241f78a8f3f25c623047b40306def1f6806e71 \ + YQ_SHA256SUM=a2c097180dd884a8d50c956ee16a9cec070f30a7947cf4ebf87d5f36213e9ed7 \ HELM_RELEASES_URL="https://get.helm.sh" \ KUBEVAL_RELEASES_URL="https://github.com/instrumenta/kubeval/releases/download" \ KUSTOMIZE_RELEASES_URL="https://github.com/kubernetes-sigs/kustomize/releases/download" \ diff --git a/v4.15/Dockerfile b/v4.15/Dockerfile index 1a06dd2..e0b6fe2 100644 --- a/v4.15/Dockerfile +++ b/v4.15/Dockerfile @@ -1,19 +1,19 @@ -FROM registry.access.redhat.com/ubi9-minimal:9.4-1194 +FROM registry.access.redhat.com/ubi9-minimal:9.4-1227 ENV VERSION=latest-4.15 \ - HELM3_VERSION=v3.15.3 \ + HELM3_VERSION=v3.15.4 \ KUBEVAL_VERSION=v0.16.1 \ KUSTOMIZE_VERSION=v5.4.3 \ SEISO_VERSION=v1.0.0 \ SOPS_VERSION=v3.9.0 \ - YQ_VERSION=v4.44.2 \ + YQ_VERSION=v4.44.3 \ ARCHIVE=openshift-client-linux \ - HELM3_SHA256SUM=ad871aecb0c9fd96aa6702f6b79e87556c8998c2e714a4959bf71ee31282ac9c \ + HELM3_SHA256SUM=11400fecfc07fd6f034863e4e0c4c4445594673fd2a129e701fe41f31170cfa9 \ KUBEVAL_SHA256SUM=2d6f9bda1423b93787fa05d9e8dfce2fc1190fefbcd9d0936b9635f3f78ba790 \ KUSTOMIZE_SHA256SUM=3669470b454d865c8184d6bce78df05e977c9aea31c30df3c669317d43bcc7a7 \ SEISO_SHA256SUM=40484059c23993b4e8d6b0add3debebb31ed1155b49a5ebdae987698b3176202 \ SHA256SUM= \ - YQ_SHA256SUM=246b781828353a59fb04ffaada241f78a8f3f25c623047b40306def1f6806e71 \ + YQ_SHA256SUM=a2c097180dd884a8d50c956ee16a9cec070f30a7947cf4ebf87d5f36213e9ed7 \ HELM_RELEASES_URL="https://get.helm.sh" \ KUBEVAL_RELEASES_URL="https://github.com/instrumenta/kubeval/releases/download" \ KUSTOMIZE_RELEASES_URL="https://github.com/kubernetes-sigs/kustomize/releases/download" \ diff --git a/v4.16/Dockerfile b/v4.16/Dockerfile index 765dfd3..1bbc62b 100644 --- a/v4.16/Dockerfile +++ b/v4.16/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9-minimal:9.4-1194 +FROM registry.access.redhat.com/ubi9-minimal:9.4-1227 ENV VERSION=latest-4.16 \ HELM3_VERSION=v3.15.4 \