diff --git a/bitnami/redis/Chart.yaml b/bitnami/redis/Chart.yaml index 8f16580d47..4d3fe08b8f 100644 --- a/bitnami/redis/Chart.yaml +++ b/bitnami/redis/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: redis -version: 10.7.5 +version: 10.7.6 appVersion: 6.0.5 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/health-configmap.yaml b/bitnami/redis/templates/health-configmap.yaml index 0657c12e58..fe80262d6c 100644 --- a/bitnami/redis/templates/health-configmap.yaml +++ b/bitnami/redis/templates/health-configmap.yaml @@ -28,9 +28,11 @@ data: {{- if .Values.tls.enabled }} -p $REDIS_TLS_PORT \ --tls \ - --cert {{ template "redis.tlsCert" . }} \ - --key {{ template "redis.tlsCertKey" . }} \ --cacert {{ template "redis.tlsCACert" . }} \ + {{- if .Values.tls.authClients }} + --cert {{ template "redis.tlsCert" . }} \ + --key {{ template "redis.tlsCertKey" . }} \ + {{- end }} {{- else }} -p $REDIS_PORT \ {{- end }} @@ -59,9 +61,11 @@ data: {{- if .Values.tls.enabled }} -p $REDIS_TLS_PORT \ --tls \ - --cert {{ template "redis.tlsCert" . }} \ - --key {{ template "redis.tlsCertKey" . }} \ --cacert {{ template "redis.tlsCACert" . }} \ + {{- if .Values.tls.authClients }} + --cert {{ template "redis.tlsCert" . }} \ + --key {{ template "redis.tlsCertKey" . }} \ + {{- end }} {{- else }} -p $REDIS_PORT \ {{- end }}