devops: update kubernetes and helm versions in dockerfile and fix build.sh platform specification.
Some checks failed
build-and-upload-docker / build-and-upload (push) Failing after 16s

This commit is contained in:
Rebecca Valente 2025-07-11 01:09:36 -03:00
parent e8b3a96c04
commit e2e0c0a62d
2 changed files with 6 additions and 4 deletions

View File

@ -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} \

View File

@ -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 \
.