-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/proxyVarsFromSecret
- Loading branch information
Showing
6 changed files
with
111 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
#!/bin/sh | ||
|
||
RETRY_INTERVAL=5 # Interval between retries in seconds | ||
elapsed=0 # Elapsed time | ||
|
||
check_redis() { | ||
host=$1 | ||
port=$2 | ||
while [ $elapsed -lt $TOTAL_RETRY_TIME ]; do | ||
echo "Checking Redis at $host:$port... Elapsed time: ${elapsed}s" | ||
if nc -z -w1 $TIMEOUT $host $port > /dev/null 2>&1; then | ||
echo "Redis is up at $host:$port!" | ||
return 0 | ||
else | ||
echo "Redis is down at $host:$port. Retrying in $RETRY_INTERVAL seconds." | ||
sleep $RETRY_INTERVAL | ||
elapsed=$((elapsed + RETRY_INTERVAL)) | ||
fi | ||
done | ||
echo "Failed to connect to Redis at $host:$port after $TOTAL_RETRY_TIME seconds." | ||
return 1 | ||
} | ||
|
||
# For parsing and checking connections | ||
parse_and_check() { | ||
url=$1 | ||
clean_url=${url#redis://} | ||
host=$(echo $clean_url | cut -d':' -f1) | ||
port=$(echo $clean_url | cut -d':' -f2) | ||
check_redis $host $port | ||
} | ||
|
||
# Main | ||
if [ "$OAUTH2_PROXY_REDIS_USE_CLUSTER" = "true" ]; then | ||
echo "Checking Redis in cluster mode..." | ||
echo "$OAUTH2_PROXY_REDIS_CLUSTER_CONNECTION_URLS" | tr ',' '\n' | while read -r addr; do | ||
parse_and_check $addr || exit 1 | ||
done | ||
elif [ "$OAUTH2_PROXY_REDIS_USE_SENTINEL" = "true" ]; then | ||
echo "Checking Redis in sentinel mode..." | ||
echo "$OAUTH2_PROXY_REDIS_SENTINEL_CONNECTION_URLS" | tr ',' '\n' | while read -r addr; do | ||
parse_and_check $addr || exit 1 | ||
done | ||
elif [ -n "$OAUTH2_PROXY_REDIS_CONNECTION_URL" ]; then | ||
echo "Checking standalone Redis..." | ||
parse_and_check "$OAUTH2_PROXY_REDIS_CONNECTION_URL" || exit 1 | ||
else | ||
echo "Redis configuration not specified." | ||
exit 1 | ||
fi | ||
|
||
echo "Redis check completed." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{{- if and .Values.redis.enabled .Values.initContainers.waitForRedis.enabled }} | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
labels: | ||
app: {{ template "oauth2-proxy.name" . }} | ||
{{- include "oauth2-proxy.labels" . | indent 4 }} | ||
name: {{ template "oauth2-proxy.fullname" . }}-wait-for-redis | ||
namespace: {{ template "oauth2-proxy.namespace" $ }} | ||
data: | ||
check-redis.sh: | | ||
{{ .Files.Get "scripts/check-redis.sh" | indent 4 }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters