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 <tae.park@windriver.com>
This commit is contained in:
Tae Park 2024-02-07 14:59:04 -05:00
parent 969e0626b2
commit 4f504c064c
1 changed files with 1 additions and 1 deletions

View File

@ -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"