Skip to content

Commit

Permalink
[bitnami/minio] fix secret creation check
Browse files Browse the repository at this point in the history
Signed-off-by: c4tz <[email protected]>
  • Loading branch information
c4tz committed Oct 30, 2024
1 parent 7adff78 commit a2d3cba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bitnami/minio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ maintainers:
name: minio
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/minio
version: 14.8.0
version: 14.8.1
4 changes: 2 additions & 2 deletions bitnami/minio/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ Get the root password key.
Return true if a secret object should be created
*/}}
{{- define "minio.createSecret" -}}
{{- if .Values.auth.existingSecret -}}
{{- if or (.Values.auth.existingSecret) (eq .Values.auth.useSecret false) -}}
{{- else -}}
{{- .Values.auth.useSecret -}}
{{- true -}}
{{- end -}}
{{- end -}}

Expand Down

0 comments on commit a2d3cba

Please sign in to comment.