From 2def2b017ddccc627d643a5343fc6c144ff359d3 Mon Sep 17 00:00:00 2001 From: srw Date: Wed, 1 Oct 2025 04:49:09 +0000 Subject: [PATCH] remove vestigial default values --- defaults/main.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/defaults/main.yml b/defaults/main.yml index 69cf0f5..9763757 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -59,23 +59,6 @@ redis_container_resources: cpu: "1" 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: # OAUTH2_PROVIDER_APPLICATION_MODEL: "{{ redis_oauth_application }}" @@ -93,6 +76,3 @@ redis_sentinel_container_resources: limits: cpu: "500m" memory: "512Mi" - -redis_sentinel_command: > - /bin/sh -lc exec redis-sentinel /config/sentinel.conf