From 585d6e49bca8b39dbabe5433d8502d18dc1e8d5e Mon Sep 17 00:00:00 2001 From: Ron Compos Date: Tue, 7 Aug 2018 09:02:00 -0600 Subject: [PATCH] =?UTF-8?q?Comment=20out=20persistence.storageClass=20to?= =?UTF-8?q?=20accomodate=20K8s=20default=20storag=E2=80=A6=20(#7003)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Comment out persistence.storageClass to accomodate K8s default storage class. * Chart.yaml version bump to 1.6.1, Readme updated for persistence.storageClass default empty string value. * Change README.md to reflect default value of nil instead of empty string "". --- stable/minio/Chart.yaml | 2 +- stable/minio/README.md | 2 +- stable/minio/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stable/minio/Chart.yaml b/stable/minio/Chart.yaml index ed1cc4c696..554cf72299 100755 --- a/stable/minio/Chart.yaml +++ b/stable/minio/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 description: Minio is a high performance distributed object storage server, designed for large-scale private cloud infrastructure. name: minio -version: 1.6.0 +version: 1.6.1 appVersion: RELEASE.2018-07-10T01-42-11Z keywords: - storage diff --git a/stable/minio/README.md b/stable/minio/README.md index 427613f7bc..39e22fcbd3 100644 --- a/stable/minio/README.md +++ b/stable/minio/README.md @@ -97,7 +97,7 @@ The following table lists the configurable parameters of the Minio chart and the | `persistence.enabled` | Use persistent volume to store data | `true` | | `persistence.size` | Size of persistent volume claim | `10Gi` | | `persistence.existingClaim`| Use an existing PVC to persist data | `nil` | -| `persistence.storageClass` | Type of persistent volume claim | `generic` | +| `persistence.storageClass` | Storage class name of PVC | `nil` | | `persistence.accessMode` | ReadWriteOnce or ReadOnly | `ReadWriteOnce` | | `persistence.subPath` | Mount a sub directory of the persistent volume if set | `""` | | `resources` | CPU/Memory resource requests/limits | Memory: `256Mi`, CPU: `100m` | diff --git a/stable/minio/values.yaml b/stable/minio/values.yaml index 9c93550e9b..5ed65b582a 100644 --- a/stable/minio/values.yaml +++ b/stable/minio/values.yaml @@ -53,7 +53,7 @@ persistence: ## ## Storage class of PV to bind. By default it looks for standard storage class. ## If the PV uses a different storage class, specify that here. - storageClass: standard + # storageClass: standard accessMode: ReadWriteOnce size: 10Gi