From 227e4b77ebf05360f6823af9c49ee41c60a6d751 Mon Sep 17 00:00:00 2001 From: gsmith-sas <65406958+gsmith-sas@users.noreply.github.com> Date: Tue, 19 Dec 2023 11:56:10 -0500 Subject: [PATCH 1/2] [chore]Update comment re:K8s version support matrix --- bin/kube-include.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/kube-include.sh b/bin/kube-include.sh index 3a972379..1938d2b6 100644 --- a/bin/kube-include.sh +++ b/bin/kube-include.sh @@ -24,14 +24,14 @@ fi # SAS Viya 4 versions # supported by SAS Tech Support -# Updated: 22NOV23 +# Updated: 19DEC23 # 2022.09 LTS 1.21 1.24 # 2023.03 LTS 1.23 1.25 # 2023.10 LTS 1.25 1.27 -# 2023.08 1.24 1.26 # 2023.09 1.25 1.27 # 2023.10 1.25 1.27 # 2023.11 1.25 1.27 +# 2023.12 1.25 1.27 if [[ $KUBE_SERVER_VER =~ v1.2[1-9] ]]; then : else From c61cbfa1f67acaf33e62e4978bc35a9a6685fe55 Mon Sep 17 00:00:00 2001 From: gsmith-sas <65406958+gsmith-sas@users.noreply.github.com> Date: Tue, 19 Dec 2023 12:01:54 -0500 Subject: [PATCH 2/2] [chore] Minor coding update to address shellcheck suggestion --- bin/kube-include.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/kube-include.sh b/bin/kube-include.sh index 1938d2b6..64d4e114 100644 --- a/bin/kube-include.sh +++ b/bin/kube-include.sh @@ -6,7 +6,7 @@ # This script is not intended to be run directly # Assumes bin/common.sh has been sourced -if [ ! $(which kubectl) ]; then +if [ ! "$(which kubectl)" ]; then log_error "kubectl not found on the current PATH" exit 1 fi