Skip to content

Commit

Permalink
Housekeeping (#682)
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmith-sas authored Sep 27, 2024
1 parent a2ffcf2 commit de0f3d0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions bin/kube-include.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down

0 comments on commit de0f3d0

Please sign in to comment.