From b7cfebdd46ada4da2c4e1986bbe2324ee11ab4f5 Mon Sep 17 00:00:00 2001 From: Stavros kois Date: Thu, 6 Oct 2022 23:20:56 +0300 Subject: [PATCH] fix(pvc): revert size change --- charts/common/Chart.yaml | 2 +- charts/common/templates/class/_pvc.tpl | 2 +- charts/common/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/common/Chart.yaml b/charts/common/Chart.yaml index ea511799..5c62bc0d 100644 --- a/charts/common/Chart.yaml +++ b/charts/common/Chart.yaml @@ -15,4 +15,4 @@ maintainers: name: common sources: null type: library -version: 10.6.9 +version: 10.6.10 diff --git a/charts/common/templates/class/_pvc.tpl b/charts/common/templates/class/_pvc.tpl index 28b04626..1fe87269 100644 --- a/charts/common/templates/class/_pvc.tpl +++ b/charts/common/templates/class/_pvc.tpl @@ -42,7 +42,7 @@ spec: - {{ ( $values.accessMode | default "ReadWriteOnce" ) | quote }} resources: requests: - storage: {{ $values.size | default "256Gi" | quote }} + storage: {{ $values.size | default "999Gi" | quote }} {{- with $values.spec }} {{ tpl ( toYaml . ) $ | indent 2 }} {{- end }} diff --git a/charts/common/values.yaml b/charts/common/values.yaml index 0508a764..9e62b85b 100644 --- a/charts/common/values.yaml +++ b/charts/common/values.yaml @@ -740,7 +740,7 @@ persistence: accessMode: ReadWriteOnce # -- The amount of storage that is requested for the persistent volume. - size: 256Gi + size: 999Gi # -- Set to true to retain the PVC upon `helm uninstall` retain: false