diff --git a/bitnami/redis/Chart.yaml b/bitnami/redis/Chart.yaml index 66a7389a7..10cf7c514 100644 --- a/bitnami/redis/Chart.yaml +++ b/bitnami/redis/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: redis -version: 11.3.2 +version: 11.3.3 appVersion: 6.0.9 description: Open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets. keywords: diff --git a/bitnami/redis/templates/redis-master-statefulset.yaml b/bitnami/redis/templates/redis-master-statefulset.yaml index 49ea8b358..1746675c0 100644 --- a/bitnami/redis/templates/redis-master-statefulset.yaml +++ b/bitnami/redis/templates/redis-master-statefulset.yaml @@ -209,6 +209,8 @@ spec: key: {{ template "redis.secretPasswordKey" . }} {{- end }} {{- if .Values.tls.enabled }} + - name: REDIS_ADDR + value: rediss://localhost:{{ .Values.redisPort }} - name: REDIS_EXPORTER_TLS_CLIENT_KEY_FILE value: {{ template "redis.tlsCertKey" . }} - name: REDIS_EXPORTER_TLS_CLIENT_CERT_FILE diff --git a/bitnami/redis/templates/redis-node-statefulset.yaml b/bitnami/redis/templates/redis-node-statefulset.yaml index 8cebeb81a..84fdbce78 100644 --- a/bitnami/redis/templates/redis-node-statefulset.yaml +++ b/bitnami/redis/templates/redis-node-statefulset.yaml @@ -315,6 +315,8 @@ spec: key: {{ template "redis.secretPasswordKey" . }} {{- end }} {{- if .Values.tls.enabled }} + - name: REDIS_ADDR + value: rediss://localhost:{{ .Values.redisPort }} - name: REDIS_EXPORTER_TLS_CLIENT_KEY_FILE value: {{ template "redis.tlsCertKey" . }} - name: REDIS_EXPORTER_TLS_CLIENT_CERT_FILE diff --git a/bitnami/redis/templates/redis-slave-statefulset.yaml b/bitnami/redis/templates/redis-slave-statefulset.yaml index 5af0a3bab..727a7ba4f 100644 --- a/bitnami/redis/templates/redis-slave-statefulset.yaml +++ b/bitnami/redis/templates/redis-slave-statefulset.yaml @@ -225,6 +225,8 @@ spec: key: {{ template "redis.secretPasswordKey" . }} {{- end }} {{- if .Values.tls.enabled }} + - name: REDIS_ADDR + value: rediss://localhost:{{ .Values.redisPort }} - name: REDIS_EXPORTER_TLS_CLIENT_KEY_FILE value: {{ template "redis.tlsCertKey" . }} - name: REDIS_EXPORTER_TLS_CLIENT_CERT_FILE