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

Sos2403b #616

Merged
merged 4 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# SAS Viya Monitoring for Kubernetes

## unreleased
* **Overall**
* [CHANGE] Drop support for OpenShift 4.11; the minimum supported version of OpenShift is now 4.12.

## Version 1.2.22 (13FEB2024)
* **Overall**
* [TASK] Refactored how container image and Helm chart version information is handled to permit automatically generating this information from files. Note
Expand Down
4 changes: 2 additions & 2 deletions bin/kube-include.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ fi

# SAS Viya 4 versions
# supported by SAS Tech Support
# Updated: 19DEC23
# Updated: 21FEB24
# 2022.09 LTS 1.21 1.24
# 2023.03 LTS 1.23 1.25
# 2023.10 LTS 1.25 1.27
# 2023.10 1.25 1.27
# 2023.11 1.25 1.27
# 2023.12 1.25 1.27
# 2024.01 1.25 1.27
# 2024.02 1.26 1.28

if [[ $KUBE_SERVER_VER =~ v1.2[1-9] ]]; then
:
Expand Down
14 changes: 7 additions & 7 deletions bin/openshift-include.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ function ocVersionCheck {
### Openshift versions that do not start with a 4 should produce an error.
if (( "$OSHIFT_MAJOR_VERSION" != 4 )); then
log_error "Unsupported OpenShift server version: $OSHIFT_FULL_VERSION"
log_error "Version 4.11+ is required"
log_error "Version 4.12+ is required"
exit 1
### 18OCT23: Openshift 4 versions earlier than 4.11 should produce an error.
elif (( "$OSHIFT_MINOR_VERSION" < 11 )); then
### 21FEB24: Openshift 4 versions earlier than 4.12 should produce an error.
elif (( "$OSHIFT_MINOR_VERSION" < 12 )); then
log_error "Unsupported OpenShift server version: $OSHIFT_FULL_VERSION"
log_error "Version 4.11+ is required"
log_error "Version 4.12+ is required"
exit 1
else
log_debug "OpenShift server version check OK"
Expand All @@ -64,12 +64,12 @@ function ocVersionCheck {
### Openshift versions that do not start with a 4 should produce an error.
if (( "$OC_MAJOR_VERSION" != 4 )); then
log_error "Unsupported OpenShift client version: $OC_FULL_VERSION"
log_error "Version 4.10+ is required"
log_error "Version 4.11+ is required"
exit 1
### Openshift 4 client version must be w/in 1 minor releases of server minimum.
elif (( "$OC_MINOR_VERSION" < 10 )); then
elif (( "$OC_MINOR_VERSION" < 11 )); then
log_error "Unsupported OpenShift client version: $OC_FULL_VERSION"
log_error "Version 4.10+ is required"
log_error "Version 4.11+ is required"
exit 1
else
log_debug "OpenShift client version check OK"
Expand Down
Loading