From e2e0c0a62d7feea67eb1c4ad001fa1ddfabb5276 Mon Sep 17 00:00:00 2001 From: Rebecca Valente Date: Fri, 11 Jul 2025 01:09:36 -0300 Subject: [PATCH] devops: update kubernetes and helm versions in dockerfile and fix build.sh platform specification. --- Dockerfile | 4 ++-- build.sh | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9c0fd71..c0753d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -62,8 +62,8 @@ RUN export ARCH=$(dpkg --print-architecture) \ && mv helm-${SYSTEM}-${ARCH}/helmenv /usr/bin/helmenv \ && mv helm-${SYSTEM}-${ARCH}/helm-wrapper /usr/bin/helm -ENV KUBECTL_VERSION=1.28.2 -ENV HELM_VERSION=3.15.4 +ENV KUBECTL_VERSION=1.33.0 +ENV HELM_VERSION=3.18.4 RUN kbenv install ${KUBECTL_VERSION} \ && kbenv use ${KUBECTL_VERSION} \ && helmenv install ${HELM_VERSION} \ diff --git a/build.sh b/build.sh index e28614e..12880bc 100755 --- a/build.sh +++ b/build.sh @@ -4,7 +4,8 @@ docker buildx build \ --progress=plain \ --tag rbvtopudding/devops:latest \ --push \ - --platform linux/arm64/v8,linux/amd64 \ + # --platform linux/arm64/v8,linux/amd64 \ + --platform linux/amd64 \ . @@ -12,5 +13,6 @@ docker buildx build \ --progress=plain \ --tag rbvtopudding/devops:1.0.0 \ --push \ - --platform linux/arm64/v8,linux/amd64 \ + # --platform linux/arm64/v8,linux/amd64 \ + --platform linux/amd64 \ .