From ae95871011e5f95544b85cbe3875f349eae28ec8 Mon Sep 17 00:00:00 2001 From: Thomas Wilkinson Date: Tue, 17 Mar 2020 18:15:26 -0500 Subject: [PATCH] [stable/minio] corrected syntax error in statefulset (#21503) * corrected syntax error in statefulset Signed-off-by: Thomas Wilkinson * chart version bump Signed-off-by: Thomas Wilkinson --- stable/minio/Chart.yaml | 2 +- stable/minio/templates/statefulset.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stable/minio/Chart.yaml b/stable/minio/Chart.yaml index 17e5ed6dc603..0fba0fa1536f 100755 --- a/stable/minio/Chart.yaml +++ b/stable/minio/Chart.yaml @@ -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.16 +version: 5.0.17 appVersion: master keywords: - storage diff --git a/stable/minio/templates/statefulset.yaml b/stable/minio/templates/statefulset.yaml index 36212f7a1019..49f3a014b150 100644 --- a/stable/minio/templates/statefulset.yaml +++ b/stable/minio/templates/statefulset.yaml @@ -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) }}