mirror of
https://github.com/bitnami/charts.git
synced 2026-02-11 04:37:23 +08:00
[bitnami/minio] Fix issue when using custom secret keys (#32882)
* [bitnami/minio] Fix issue when using custom secret keys Signed-off-by: Miguel Ruiz <miguel.ruiz@broadcom.com> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> --------- Signed-off-by: Miguel Ruiz <miguel.ruiz@broadcom.com> Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
@@ -1,8 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## 16.0.3 (2025-04-08)
|
||||
## 16.0.4 (2025-04-09)
|
||||
|
||||
* [bitnami/minio] Release 16.0.3 ([#32877](https://github.com/bitnami/charts/pull/32877))
|
||||
* [bitnami/minio] Fix issue when using custom secret keys ([#32882](https://github.com/bitnami/charts/pull/32882))
|
||||
|
||||
## <small>16.0.3 (2025-04-08)</small>
|
||||
|
||||
* [bitnami/minio] Release 16.0.3 (#32877) ([3dc1ea0](https://github.com/bitnami/charts/commit/3dc1ea0dbbcf21bd58182639486c7be75b20524d)), closes [#32877](https://github.com/bitnami/charts/issues/32877)
|
||||
|
||||
## <small>16.0.2 (2025-04-03)</small>
|
||||
|
||||
|
||||
@@ -35,4 +35,4 @@ maintainers:
|
||||
name: minio
|
||||
sources:
|
||||
- https://github.com/bitnami/charts/tree/main/bitnami/minio
|
||||
version: 16.0.3
|
||||
version: 16.0.4
|
||||
|
||||
@@ -156,9 +156,9 @@ spec:
|
||||
value: {{ ternary "yes" "no" .Values.auth.forceNewKeys | quote }}
|
||||
{{- if .Values.auth.usePasswordFiles }}
|
||||
- name: MINIO_ROOT_USER_FILE
|
||||
value: "/opt/bitnami/minio/secrets/root-user"
|
||||
value: {{ printf "/opt/bitnami/minio/secrets/%s" (include "minio.rootUserKey" .) }}
|
||||
- name: MINIO_ROOT_PASSWORD_FILE
|
||||
value: "/opt/bitnami/minio/secrets/root-password"
|
||||
value: {{ printf "/opt/bitnami/minio/secrets/%s" (include "minio.rootPasswordKey" .) }}
|
||||
{{- else }}
|
||||
- name: MINIO_ROOT_USER
|
||||
valueFrom:
|
||||
|
||||
@@ -258,9 +258,9 @@ spec:
|
||||
value: {{ ternary "https" "http" .Values.tls.enabled | quote }}
|
||||
{{- if .Values.auth.usePasswordFiles }}
|
||||
- name: MINIO_ROOT_USER_FILE
|
||||
value: "/opt/bitnami/minio/secrets/root-user"
|
||||
value: {{ printf "/opt/bitnami/minio/secrets/%s" (include "minio.rootUserKey" .) }}
|
||||
- name: MINIO_ROOT_PASSWORD_FILE
|
||||
value: "/opt/bitnami/minio/secrets/root-password"
|
||||
value: {{ printf "/opt/bitnami/minio/secrets/%s" (include "minio.rootPasswordKey" .) }}
|
||||
{{- else }}
|
||||
- name: MINIO_ROOT_USER
|
||||
valueFrom:
|
||||
|
||||
@@ -123,9 +123,9 @@ spec:
|
||||
value: {{ .Values.containerPorts.api | quote }}
|
||||
{{- if .Values.auth.usePasswordFiles }}
|
||||
- name: MINIO_ROOT_USER_FILE
|
||||
value: "/opt/bitnami/minio/secrets/root-user"
|
||||
value: {{ printf "/opt/bitnami/minio/secrets/%s" (include "minio.rootUserKey" .) }}
|
||||
- name: MINIO_ROOT_PASSWORD_FILE
|
||||
value: "/opt/bitnami/minio/secrets/root-password"
|
||||
value: {{ printf "/opt/bitnami/minio/secrets/%s" (include "minio.rootPasswordKey" .) }}
|
||||
{{- else }}
|
||||
- name: MINIO_ROOT_USER
|
||||
valueFrom:
|
||||
|
||||
Reference in New Issue
Block a user