Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore]Update comment re:K8s version support matrix #599

Merged
merged 2 commits into from
Dec 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bin/kube-include.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down