Skip to content

feat(container)!: Update image redis ( 24.0.8 ➔ 28.2.1 ) - #352

Open
parsec-renovate[bot] wants to merge 1 commit into
mainfrom
renovate/redis-28.x
Open

parsec-renovate[bot] wants to merge 1 commit into
mainfrom
renovate/redis-28.x

Conversation

@parsec-renovate

@parsec-renovate parsec-renovate Bot commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Update Change
redis (source) major 24.0.828.2.1

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Configuration

📅 Schedule: (in timezone America/New_York)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate CLI.

@github-actions

github-actions Bot commented Aug 5, 2026

Copy link
Copy Markdown
--- kubernetes/apps/database/redis/app Kustomization: flux-system/redis HelmRelease: database/redis

+++ kubernetes/apps/database/redis/app Kustomization: flux-system/redis HelmRelease: database/redis

@@ -13,13 +13,13 @@

     spec:
       chart: redis
       sourceRef:
         kind: HelmRepository
         name: bitnami
         namespace: flux-system
-      version: 24.0.8
+      version: 28.2.1
   install:
     remediation:
       retries: 3
   interval: 30m
   timeout: 15m
   uninstall:

@github-actions

github-actions Bot commented Aug 5, 2026

Copy link
Copy Markdown
--- HelmRelease: database/redis ConfigMap: database/redis-configuration

+++ HelmRelease: database/redis ConfigMap: database/redis-configuration

@@ -28,13 +28,12 @@

   replica.conf: |-
     dir /data
     # User-supplied replica configuration:
     rename-command FLUSHDB ""
     rename-command FLUSHALL ""
     # End of replica configuration
-  users.acl: ''
   sentinel.conf: |-
     dir "/tmp"
     port 26379
     sentinel monitor redis-master redis-node-0.redis-headless.database.svc.cluster.local 6379 2
     sentinel down-after-milliseconds redis-master 60000
     sentinel failover-timeout redis-master 180000
--- HelmRelease: database/redis ConfigMap: database/redis-health

+++ HelmRelease: database/redis ConfigMap: database/redis-health

@@ -9,21 +9,21 @@

     app.kubernetes.io/managed-by: Helm
     app.kubernetes.io/name: redis
 data:
   ping_readiness_local.sh: |-
     #!/bin/bash
 
+    timeout=$1
+    run_redis_command() {
+        local args=("-p" "$REDIS_PORT")
+        timeout -s 15 $timeout redis-cli "${args[@]}" "$@"
+    }
+
     [[ -f $REDIS_PASSWORD_FILE ]] && export REDIS_PASSWORD="$(< "${REDIS_PASSWORD_FILE}")"
     [[ -n "$REDIS_PASSWORD" ]] && export REDISCLI_AUTH="$REDIS_PASSWORD"
-    response=$(
-      timeout -s 15 $1 \
-      redis-cli \
-        -h localhost \
-        -p $REDIS_PORT \
-        ping
-    )
+    response=$(run_redis_command ping)
     if [ "$?" -eq "124" ]; then
       echo "Timed out"
       exit 1
     fi
     if [ "$response" != "PONG" ]; then
       echo "$response"
@@ -79,60 +79,7 @@

         PORT=$1;
         FOUND_PORT=0;
       } else if (FOUND_RUNID==1) {
         printf "\nsentinel known-sentinel redis-master %s %s %s", IP, PORT, $0; FOUND_RUNID=0;
       }
     }
-  ping_readiness_master.sh: |-
-    #!/bin/bash
 
-    [[ -f $REDIS_MASTER_PASSWORD_FILE ]] && export REDIS_MASTER_PASSWORD="$(< "${REDIS_MASTER_PASSWORD_FILE}")"
-    [[ -n "$REDIS_MASTER_PASSWORD" ]] && export REDISCLI_AUTH="$REDIS_MASTER_PASSWORD"
-    response=$(
-      timeout -s 15 $1 \
-      redis-cli \
-        -h $REDIS_MASTER_HOST \
-        -p $REDIS_MASTER_PORT_NUMBER \
-        ping
-    )
-    if [ "$?" -eq "124" ]; then
-      echo "Timed out"
-      exit 1
-    fi
-    if [ "$response" != "PONG" ]; then
-      echo "$response"
-      exit 1
-    fi
-  ping_liveness_master.sh: |-
-    #!/bin/bash
-
-    [[ -f $REDIS_MASTER_PASSWORD_FILE ]] && export REDIS_MASTER_PASSWORD="$(< "${REDIS_MASTER_PASSWORD_FILE}")"
-    [[ -n "$REDIS_MASTER_PASSWORD" ]] && export REDISCLI_AUTH="$REDIS_MASTER_PASSWORD"
-    response=$(
-      timeout -s 15 $1 \
-      redis-cli \
-        -h $REDIS_MASTER_HOST \
-        -p $REDIS_MASTER_PORT_NUMBER \
-        ping
-    )
-    if [ "$?" -eq "124" ]; then
-      echo "Timed out"
-      exit 1
-    fi
-    responseFirstWord=$(echo $response | head -n1 | awk '{print $1;}')
-    if [ "$response" != "PONG" ] && [ "$responseFirstWord" != "LOADING" ]; then
-      echo "$response"
-      exit 1
-    fi
-  ping_readiness_local_and_master.sh: |-
-    script_dir="$(dirname "$0")"
-    exit_status=0
-    "$script_dir/ping_readiness_local.sh" $1 || exit_status=$?
-    "$script_dir/ping_readiness_master.sh" $1 || exit_status=$?
-    exit $exit_status
-  ping_liveness_local_and_master.sh: |-
-    script_dir="$(dirname "$0")"
-    exit_status=0
-    "$script_dir/ping_liveness_local.sh" $1 || exit_status=$?
-    "$script_dir/ping_liveness_master.sh" $1 || exit_status=$?
-    exit $exit_status
-
--- HelmRelease: database/redis ConfigMap: database/redis-scripts

+++ HelmRelease: database/redis ConfigMap: database/redis-scripts

@@ -37,24 +37,14 @@

         fi
     }
 
     get_full_hostname() {
         hostname="$1"
         full_hostname="${hostname}.${HEADLESS_SERVICE}"
-        echo "${full_hostname}"
-    }
-
-    REDISPORT=$(get_port "$HOSTNAME" "REDIS")
-
-    if [ -n "$REDIS_EXTERNAL_MASTER_HOST" ]; then
-        REDIS_SERVICE="$REDIS_EXTERNAL_MASTER_HOST"
-    else
-        REDIS_SERVICE="redis.database.svc.cluster.local"
-    fi
-
-    SENTINEL_SERVICE_PORT=$(get_port "redis" "SENTINEL")
+        echo "$full_hostname"
+    }
 
     redis_cli_command() {
         local timeout="${1:-0}"
 
         local args=("-h" "$REDIS_SERVICE" "-p" "$SENTINEL_SERVICE_PORT")
         local command="redis-cli"
@@ -83,12 +73,19 @@

 
     get_sentinel_master_info() {
         sentinel_info_command="$(redis_cli_command 10) sentinel get-master-addr-by-name redis-master"
         info "about to run the command: $sentinel_info_command"
         retry_while "eval $sentinel_info_command" 2 5
     }
+
+    REDISPORT=$(get_port "$HOSTNAME" "REDIS")
+    REDIS_SERVICE="redis.database.svc.cluster.local"
+    if [ -n "$REDIS_EXTERNAL_MASTER_HOST" ]; then
+        REDIS_SERVICE="$REDIS_EXTERNAL_MASTER_HOST"
+    fi
+    SENTINEL_SERVICE_PORT=$(get_port "redis" "SENTINEL")
     HEADLESS_SERVICE="redis-headless.database.svc.cluster.local"
 
     [[ -f $REDIS_PASSWORD_FILE ]] && export REDIS_PASSWORD="$(< "${REDIS_PASSWORD_FILE}")"
     [[ -f $REDIS_MASTER_PASSWORD_FILE ]] && export REDIS_MASTER_PASSWORD="$(< "${REDIS_MASTER_PASSWORD_FILE}")"
 
     # check if there is a master
@@ -216,13 +213,15 @@

         replace_in_file "/opt/bitnami/redis-sentinel/etc/prepare-sentinel.conf" "^#*\s*${key} .*" "${key} ${value}" false
     }
     sentinel_conf_add() {
         echo $'\n'"$@" >> "/opt/bitnami/redis-sentinel/etc/prepare-sentinel.conf"
     }
     host_id() {
-        echo "$1" | openssl sha1 | awk '{print $2}'
+        printf '%s\n' "database:$1" |
+            openssl sha1 |
+            awk '{print $2}'
     }
     get_sentinel_master_info() {
         if is_boolean_yes "$REDIS_SENTINEL_TLS_ENABLED"; then
             sentinel_info_command="timeout 10 redis-cli -h $REDIS_SERVICE -p $SENTINEL_SERVICE_PORT --tls --cert ${REDIS_SENTINEL_TLS_CERT_FILE} --key ${REDIS_SENTINEL_TLS_KEY_FILE} --cacert ${REDIS_SENTINEL_TLS_CA_FILE} sentinel get-master-addr-by-name redis-master"
         else
             sentinel_info_command="timeout 10 redis-cli -h $REDIS_SERVICE -p $SENTINEL_SERVICE_PORT sentinel get-master-addr-by-name redis-master"
@@ -319,13 +318,12 @@

   prestop-sentinel.sh: |
     #!/bin/bash
 
     . /opt/bitnami/scripts/libvalidations.sh
     . /opt/bitnami/scripts/libos.sh
     HEADLESS_SERVICE="redis-headless.database.svc.cluster.local"
-
 
     get_full_hostname() {
         hostname="$1"
         full_hostname="${hostname}.${HEADLESS_SERVICE}"
         echo "${full_hostname}"
     }
@@ -354,13 +352,13 @@

 
 
 
     if ! sentinel_failover_finished; then
         echo "I am the master pod and you are stopping me. Starting sentinel failover"
         if retry_while "sentinel_failover_finished" "20" 1; then
-            echo "Master has been successfuly failed over to a different pod."
+            echo "Master has been successfully failed over to a different pod."
             exit 0
         else
             echo "Master failover failed"
             exit 1
         fi
     else
@@ -368,12 +366,13 @@

     fi
   prestop-redis.sh: |
     #!/bin/bash
 
     . /opt/bitnami/scripts/libvalidations.sh
     . /opt/bitnami/scripts/libos.sh
+    HEADLESS_SERVICE="redis-headless.database.svc.cluster.local"
 
     run_redis_command() {
         local args=("-h" "127.0.0.1")
         if is_boolean_yes "$REDIS_TLS_ENABLED"; then
             args+=("-p" "$REDIS_TLS_PORT" "--tls" "--cert" "$REDIS_TLS_CERT_FILE" "--key" "$REDIS_TLS_KEY_FILE")
             [ -n "$REDIS_TLS_CA_FILE" ] && args+=("--cacert" "$REDIS_TLS_CA_FILE")
@@ -384,14 +383,12 @@

     }
     is_master() {
         REDIS_ROLE=$(run_redis_command role | head -1)
         echo "REDIS_ROLE: $REDIS_ROLE"
         [[ "$REDIS_ROLE" == "master" ]]
     }
-    HEADLESS_SERVICE="redis-headless.database.svc.cluster.local"
-
 
     get_full_hostname() {
         hostname="$1"
         full_hostname="${hostname}.${HEADLESS_SERVICE}"
         echo "${full_hostname}"
     }
@@ -419,13 +416,12 @@

     }
 
     # redis-cli automatically consumes credentials from the REDISCLI_AUTH variable
     [[ -n "$REDIS_PASSWORD" ]] && export REDISCLI_AUTH="$REDIS_PASSWORD"
     [[ -f "$REDIS_PASSWORD_FILE" ]] && export REDISCLI_AUTH="$(< "${REDIS_PASSWORD_FILE}")"
 
-
     if is_master && ! sentinel_failover_finished; then
         echo "I am the master pod and you are stopping me. Pausing client connections."
         # Pausing client write connections to avoid data loss
         run_redis_command CLIENT PAUSE "22000" WRITE
 
         echo "Issuing failover"
--- HelmRelease: database/redis StatefulSet: database/redis-node

+++ HelmRelease: database/redis StatefulSet: database/redis-node

@@ -25,16 +25,15 @@

       labels:
         app.kubernetes.io/instance: redis
         app.kubernetes.io/managed-by: Helm
         app.kubernetes.io/name: redis
         app.kubernetes.io/component: node
       annotations:
-        checksum/configmap: 6ad039f2cafa77bc43c6906b3e078fceb424cd230fc183695a6048c1dec8d633
-        checksum/health: 07a9e9f1ff08347b0d2cd65e962feb94d6390f5b64a77ed1346867af2559df4a
-        checksum/scripts: 8ce5a08c98f049bb842dfb41b910f2d8bd9524cf6fdf3149f7068acb723173a8
-        checksum/secret: 44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a
+        checksum/configmap: 3d9806445d424fc508fdb86d8e1abb34d98e35e3062ac6678b56d0006feb3ff8
+        checksum/health: 6a3889b5cbf021e322d618543391c1ef0cccf0c6828842a913e11fe6a2fec715
+        checksum/scripts: 7d37230ec3f03f6a3b4d2037d4ea296f48a9a8c82803b1e375cd54ab6ea3ca16
         prometheus.io/port: '9121'
         prometheus.io/scrape: 'true'
     spec:
       automountServiceAccountToken: false
       securityContext:
         fsGroup: 1001
@@ -296,13 +295,13 @@

           value: redis
         - name: REDIS_EXPORTER_WEB_LISTEN_ADDRESS
           value: :9121
         - name: OPENSSL_FIPS
           value: 'yes'
         - name: GODEBUG
-          value: fips140=only
+          value: fips140=only,tlsmlkem=0
         ports:
         - name: metrics
           containerPort: 9121
         livenessProbe:
           failureThreshold: 5
           initialDelaySeconds: 10

@parsec-renovate
parsec-renovate Bot force-pushed the renovate/redis-28.x branch from e6f6b62 to 88357fb Compare August 7, 2026 18:31
@parsec-renovate parsec-renovate Bot changed the title feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.0 ) feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.1 ) Aug 7, 2026
@parsec-renovate
parsec-renovate Bot force-pushed the renovate/redis-28.x branch from 88357fb to b2d894f Compare August 8, 2026 18:21
@parsec-renovate parsec-renovate Bot changed the title feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.1 ) feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.2 ) Aug 8, 2026
@parsec-renovate
parsec-renovate Bot force-pushed the renovate/redis-28.x branch 4 times, most recently from 20efd96 to b0ea854 Compare August 14, 2026 21:21
@parsec-renovate parsec-renovate Bot changed the title feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.2 ) feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.5 ) Aug 14, 2026
@parsec-renovate
parsec-renovate Bot force-pushed the renovate/redis-28.x branch 2 times, most recently from 04289f4 to 8ef4429 Compare August 17, 2026 22:21
@parsec-renovate parsec-renovate Bot changed the title feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.5 ) feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.6 ) Aug 17, 2026
@parsec-renovate
parsec-renovate Bot force-pushed the renovate/redis-28.x branch from 8ef4429 to 40bec79 Compare August 18, 2026 18:24
@parsec-renovate parsec-renovate Bot changed the title feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.6 ) feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.7 ) Aug 18, 2026
@parsec-renovate
parsec-renovate Bot force-pushed the renovate/redis-28.x branch from 40bec79 to f391a3b Compare August 22, 2026 12:19
@parsec-renovate parsec-renovate Bot changed the title feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.7 ) feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.10 ) Aug 22, 2026
@parsec-renovate
parsec-renovate Bot force-pushed the renovate/redis-28.x branch 4 times, most recently from ae5f36d to 50f7bc5 Compare August 27, 2026 18:51
@parsec-renovate parsec-renovate Bot changed the title feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.10 ) feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.12 ) Aug 27, 2026
@parsec-renovate
parsec-renovate Bot force-pushed the renovate/redis-28.x branch 2 times, most recently from cefeff3 to d42bb27 Compare August 31, 2026 09:24
@parsec-renovate parsec-renovate Bot changed the title feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.12 ) feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.14 ) Sep 3, 2026
@parsec-renovate parsec-renovate Bot changed the title feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.14 ) feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.15 ) Sep 4, 2026
@parsec-renovate
parsec-renovate Bot force-pushed the renovate/redis-28.x branch 4 times, most recently from a14600a to badd70b Compare September 10, 2026 15:21
@parsec-renovate parsec-renovate Bot changed the title feat(container)!: Update image redis ( 24.0.8 ➔ 28.0.15 ) feat(container)!: Update image redis ( 24.0.8 ➔ 28.1.0 ) Sep 10, 2026
@parsec-renovate
parsec-renovate Bot force-pushed the renovate/redis-28.x branch 3 times, most recently from 8ae9a3a to 4e45154 Compare September 16, 2026 13:18
@parsec-renovate parsec-renovate Bot changed the title feat(container)!: Update image redis ( 24.0.8 ➔ 28.1.0 ) feat(container)!: Update image redis ( 24.0.8 ➔ 28.2.0 ) Sep 16, 2026
@parsec-renovate parsec-renovate Bot changed the title feat(container)!: Update image redis ( 24.0.8 ➔ 28.2.0 ) feat(container)!: Update image redis ( 24.0.8 ➔ 28.2.1 ) Sep 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants