remove vestigial default values

This commit is contained in:
srw 2025-10-01 04:49:09 +00:00
parent 3e748f9303
commit 2def2b017d

View File

@ -59,23 +59,6 @@ redis_container_resources:
cpu: "1" cpu: "1"
memory: "1Gi" memory: "1Gi"
redis_command_off: |
/bin/sh -lc '
cp /config/redis.conf /conf/redis.conf
if hostname | grep -q -- "-0$"; then
sed -i "/^replicaof /d" /conf/redis.conf
fi
exec redis-server /conf/redis.conf
'
redis_command: >
/bin/sh -lc |
cp /config/redis.conf /conf/redis.conf
if hostname | grep -q -- '-0$'; then
sed -i '/^replicaof /d' /conf/redis.conf
fi
exec redis-server /conf/redis.conf
# redis_server_env: # redis_server_env:
# OAUTH2_PROVIDER_APPLICATION_MODEL: "{{ redis_oauth_application }}" # OAUTH2_PROVIDER_APPLICATION_MODEL: "{{ redis_oauth_application }}"
@ -93,6 +76,3 @@ redis_sentinel_container_resources:
limits: limits:
cpu: "500m" cpu: "500m"
memory: "512Mi" memory: "512Mi"
redis_sentinel_command: >
/bin/sh -lc exec redis-sentinel /config/sentinel.conf