From 7c22500b161dabeb480f189ab574b80500ad958a Mon Sep 17 00:00:00 2001 From: Tae Park Date: Wed, 17 Jan 2024 14:12:27 -0500 Subject: [PATCH] Include kubectl v1.21 and v1.22 to supported list Adding kubectl version 1.21.14 and 1.22.17 to the list of supported kubectl versions in the vault manager container image. This is for supporting platform upgrade from stx.6.0 to stx.8.0. Test Plan: PASS Manual build of the image PASS vault sanity with the new image Story: 2010930 Task: 49423 Change-Id: Ie10abc6473790cf44b9d69c4d706338d5063aa5b 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 92fa110..093569b 100644 --- a/stx-vault-manager/debian/docker/Dockerfile +++ b/stx-vault-manager/debian/docker/Dockerfile @@ -7,7 +7,7 @@ from debian:stable-slim # https://kubernetes.io/releases/ ENV KUBE_LATEST_VERSION="v1.28.4" -ENV KUBE_VERSIONS="v1.28.4 v1.27.8 v1.26.11 v1.25.16 v1.24.17 v1.23.17" +ENV KUBE_VERSIONS="v1.28.4 v1.27.8 v1.26.11 v1.25.16 v1.24.17 v1.23.17 v1.22.17 v1.21.14" 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"