diff options
author | 2024-11-28 14:09:55 +0100 | |
---|---|---|
committer | 2024-12-09 14:01:59 +0100 | |
commit | 644dd33c78dd4c7fe638f93414617686efea95ec (patch) | |
tree | 7191169514135ddc7a775784542e688290bd2f75 /kubernetes/authentication/components/oauth2-proxy/scripts | |
parent | c83b46874cdcda8e14b4bf46c2acbff57c9d6e94 (diff) |
[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 <andreas-geissler@telekom.de>
Diffstat (limited to 'kubernetes/authentication/components/oauth2-proxy/scripts')
-rwxr-xr-x[-rw-r--r--] | kubernetes/authentication/components/oauth2-proxy/scripts/check-redis.sh | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/kubernetes/authentication/components/oauth2-proxy/scripts/check-redis.sh b/kubernetes/authentication/components/oauth2-proxy/scripts/check-redis.sh index 24e628f426..62dd9b684f 100644..100755 --- 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 |