From 4f504c064cc1426314afcf457dfae33198253fea Mon Sep 17 00:00:00 2001 From: Tae Park Date: Wed, 7 Feb 2024 14:59:04 -0500 Subject: [PATCH] Fix KUBE_LATEST_VERSION to installed version After updating the kubectl versions, we noticed that there is a mismatch between version in the KUBE_LATEST_VERSION variable, and the actual installed version. This change fixes the mismatch, and makes KUBE_LATEST_VERSION point to the correct version. Test Plan: PASS Manual build of the image PASS verify in docker history for correct version Story: 2010930 Task: 49526 Change-Id: I5055fd204527c49cc47478d62d01e1afa18d3556 Signed-off-by: Tae Park --- stx-vault-manager/debian/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stx-vault-manager/debian/docker/Dockerfile b/stx-vault-manager/debian/docker/Dockerfile index 7f439ff..733870b 100644 --- a/stx-vault-manager/debian/docker/Dockerfile +++ b/stx-vault-manager/debian/docker/Dockerfile @@ -6,7 +6,7 @@ from debian:stable-slim # Otherwise the latest minor releases are listed here: # https://kubernetes.io/releases/ -ENV KUBE_LATEST_VERSION="v1.28.4" +ENV KUBE_LATEST_VERSION="v1.28.6" ENV KUBE_VERSIONS="v1.28.6 v1.27.10 v1.26.13 v1.25.16 v1.24.17" ENV KUBECTL_DL_URL="https://storage.googleapis.com/kubernetes-release/release/${KUBE_LATEST_VERSION}/bin/linux/amd64/kubectl" ENV KUBECTL_INSTALL_PATH="/usr/local/bin"