From 644dd33c78dd4c7fe638f93414617686efea95ec Mon Sep 17 00:00:00 2001 From: Andreas Geissler Date: Thu, 28 Nov 2024 14:09:55 +0100 Subject: [AUTHENTICATION] New Oslo version Update for the latest Keycloak version (26.0.x) Additional support for REALM options. Add Authorization support Update keycloak-config-cli and oauth2-proxy charts Issue-ID: OOM-3306 Change-Id: I1e1d4b7afbaf52bc33904a1589efc25cf578d7a6 Signed-off-by: Andreas Geissler --- .../components/oauth2-proxy/scripts/check-redis.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) mode change 100644 => 100755 kubernetes/authentication/components/oauth2-proxy/scripts/check-redis.sh (limited to 'kubernetes/authentication/components/oauth2-proxy/scripts') diff --git a/kubernetes/authentication/components/oauth2-proxy/scripts/check-redis.sh b/kubernetes/authentication/components/oauth2-proxy/scripts/check-redis.sh old mode 100644 new mode 100755 index 24e628f426..62dd9b684f --- a/kubernetes/authentication/components/oauth2-proxy/scripts/check-redis.sh +++ b/kubernetes/authentication/components/oauth2-proxy/scripts/check-redis.sh @@ -24,7 +24,16 @@ check_redis() { # For parsing and checking connections parse_and_check() { url=$1 - clean_url=${url#redis://} + + # Strip either redis:// or rediss:// + if [ $url = "rediss://*" ]; then + clean_url=${url#rediss://} + echo "Using secure Rediss connection..." + else + clean_url=${url#redis://} + echo "Using standard Redis connection..." + fi + host=$(echo $clean_url | cut -d':' -f1) port=$(echo $clean_url | cut -d':' -f2) check_redis $host $port -- cgit