Merge "Disable oidc-auth-apps application upgrade"

This commit is contained in:
Zuul 2022-05-18 20:24:35 +00:00 committed by Gerrit Code Review
commit e2dae3e31b
1 changed files with 2 additions and 2 deletions

View File

@ -83,9 +83,9 @@ if [ "$ACTION" == "activate" ]; then
# Confirm application is upgradable
# TODO: move nginx back to the supported platform applications list when
# fluxcd application upgrade is supported
if [[ "${UPGRADE_APP_NAME}" =~ ^(oidc-auth-apps|platform-integ-apps|snmp)$ ]]; then
if [[ "${UPGRADE_APP_NAME}" =~ ^(platform-integ-apps|snmp)$ ]]; then
log "$NAME: ${UPGRADE_APP_NAME} is a supported platform application."
elif [[ "${UPGRADE_APP_NAME}" =~ ^(cert-manager|nginx-ingress-controller)$ ]]; then
elif [[ "${UPGRADE_APP_NAME}" =~ ^(cert-manager|nginx-ingress-controller|oidc-auth-apps)$ ]]; then
log "$NAME: ${UPGRADE_APP_NAME} is handled by another script."
continue
else