[bitnami/valkey] Fix usePasswordFile typo in metrics container (#32260)

This commit is contained in:
Miguel Ruiz
2025-03-04 12:26:26 +01:00
committed by GitHub
parent 5fe381a12d
commit 956a457bae
5 changed files with 10 additions and 6 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 2.4.2 (2025-02-27)
## 2.4.3 (2025-03-04)
* [bitnami]/valkey update _helpers.tpl to be in line with Valkey-Cluster. ([#32203](https://github.com/bitnami/charts/pull/32203))
* [bitnami/valkey] Fix usePasswordFile typo in metrics container ([#32260](https://github.com/bitnami/charts/pull/32260))
## <small>2.4.2 (2025-03-03)</small>
* [bitnami]/valkey update _helpers.tpl to be in line with Valkey-Cluster. (#32203) ([5619378](https://github.com/bitnami/charts/commit/5619378c4014210b2934ad3e803bf72361cafdea)), closes [#32203](https://github.com/bitnami/charts/issues/32203)
## <small>2.4.1 (2025-02-27)</small>

View File

@@ -36,4 +36,4 @@ maintainers:
name: valkey
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/valkey
version: 2.4.2
version: 2.4.3

View File

@@ -320,7 +320,7 @@ spec:
- /bin/bash
- -c
- |
{{- if .Values.usePasswordFiles }}
{{- if and .Values.auth.enabled .Values.auth.usePasswordFiles }}
export REDIS_PASSWORD="$(< $REDIS_PASSWORD_FILE)"
{{- end }}
redis_exporter{{- range $key, $value := .Values.metrics.extraArgs }} --{{ $key }}={{ $value }}{{- end }}

View File

@@ -340,7 +340,7 @@ spec:
- /bin/bash
- -c
- |
{{- if .Values.usePasswordFiles }}
{{- if and .Values.auth.enabled .Values.auth.usePasswordFiles }}
export REDIS_PASSWORD="$(< $REDIS_PASSWORD_FILE)"
{{- end }}
redis_exporter{{- range $key, $value := .Values.metrics.extraArgs }} --{{ $key }}={{ $value }}{{- end }}

View File

@@ -546,7 +546,7 @@ spec:
- /bin/bash
- -c
- |
{{- if and .Values.usePasswordFiles }}
{{- if and .Values.auth.enabled .Values.auth.usePasswordFiles }}
export REDIS_PASSWORD="$(< $REDIS_PASSWORD_FILE)"
{{- end }}
redis_exporter{{- range $key, $value := .Values.metrics.extraArgs }} --{{ $key }}={{ $value }}{{- end }}