From de0f3d0c28a322e17c416d2f2119696e3bcd83ba Mon Sep 17 00:00:00 2001 From: Greg Smith <65406958+gsmith-sas@users.noreply.github.com> Date: Fri, 27 Sep 2024 15:41:06 -0400 Subject: [PATCH] Housekeeping (#682) --- bin/kube-include.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/kube-include.sh b/bin/kube-include.sh index 23f834cc..f687138e 100644 --- a/bin/kube-include.sh +++ b/bin/kube-include.sh @@ -34,26 +34,26 @@ fi; # SAS Viya 4 versions # supported by SAS Tech Support -# Updated: 26AUG24 -# 2022.09 LTS 1.21 1.24 (EOL: 1.21, 1.22) +# Updated: 27SEP24 +# 2022.09 LTS 1.21 1.24 (EOL: 1.21, 1.22, 1.23) # 2023.03 LTS 1.23 1.25 # 2023.10 LTS 1.25 1.27 # 2024.03 LTS 1.26 1.28 -# 2024.05 1.27 1.29 # 2024.06 1.27 1.29 # 2024.07 1.27 1.29 # 2024.08 1.27 1.29 +# 2024.09 1.28 1.30 # Client version allowed to be one minor version earlier than minimum server version -if [ "$KUBE_CLIENT_MAJOR" -eq "1" ] && [ "$KUBE_CLIENT_MINOR" -gt "21" ]; then +if [ "$KUBE_CLIENT_MAJOR" -eq "1" ] && [ "$KUBE_CLIENT_MINOR" -gt "22" ]; then : else log_warn "Unsupported kubectl version: [$KUBE_CLIENT_VER]." log_warn "This script might not work as expected. Support might not be available until kubectl is upgraded to a supported version." fi -if [ "$KUBE_SERVER_MAJOR" -eq "1" ] && [ "$KUBE_SERVER_MINOR" -gt "22" ]; then +if [ "$KUBE_SERVER_MAJOR" -eq "1" ] && [ "$KUBE_SERVER_MINOR" -gt "23" ]; then : else log_warn "The detected version of Kubernetes [$KUBE_SERVER_VER] is not supported by any of the currently supported releases of SAS Viya."