Skip to content

Commit

Permalink
Fix TLS can't be enabled successfully due to $scheme is always "http". (
Browse files Browse the repository at this point in the history
helm#22470)

Signed-off-by: Muller Hsu <muller79924@gmail.com>
  • Loading branch information
TreeKat71 authored and Ian Levesque committed Jul 13, 2020
1 parent 5f2f578 commit 5311ec0
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.25
version: 5.0.26
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 5311ec0

Please sign in to comment.