Skip to content

Commit

Permalink
[stable/minio] tls scheme variable incorrectly scoped (helm#21373)
Browse files Browse the repository at this point in the history
remove local scope on $scheme in if-block, otherwise always "http"

Signed-off-by: Brien Dieterle <briend@gmail.com>
Signed-off-by: Adrien Loiseau <adrien.loiseau@logic-immo.com>
  • Loading branch information
briend authored and li-adrienloiseau committed Jul 29, 2020
1 parent d05f0a0 commit e83f919
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stable/minio/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
description: MinIO is a high performance data infrastructure for machine learning, analytics and application data workloads.
name: minio
version: 5.0.14
version: 5.0.15
appVersion: master
keywords:
- storage
Expand Down
2 changes: 1 addition & 1 deletion stable/minio/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{{ $drivesPerNode := .Values.drivesPerNode | int }}
{{ $scheme := "http" }}
{{- if .Values.tls.enabled }}
{{ $scheme := "https" }}
{{ $scheme = "https" }}
{{ end }}
{{ $mountPath := .Values.mountPath }}
{{ $bucketRoot := or ($.Values.bucketRoot) ($.Values.mountPath) }}
Expand Down

0 comments on commit e83f919

Please sign in to comment.