diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2022-05-07 00:16:20 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-07 00:16:20 -0700 |
| commit | a3a718284b5da1775a85e38f7222a26882e3a5d6 (patch) | |
| tree | a6a8da7fc5c38c4b620ccd572f9bbcc4aae1a28c | |
| parent | 8bc16f11496e0c184f8ffdd3c16df8a074b65a2b (diff) | |
| parent | da2fe78ac25e348b1211e74f40bf51cc786847a5 (diff) | |
| download | seaweedfs-a3a718284b5da1775a85e38f7222a26882e3a5d6.tar.xz seaweedfs-a3a718284b5da1775a85e38f7222a26882e3a5d6.zip | |
Merge pull request #3020 from joy717/fix-filer-helm-value
fix filer helm pvc configuration
| -rw-r--r-- | k8s/helm_charts2/values.yaml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/k8s/helm_charts2/values.yaml b/k8s/helm_charts2/values.yaml index 08cfe43b1..b5d059ee9 100644 --- a/k8s/helm_charts2/values.yaml +++ b/k8s/helm_charts2/values.yaml @@ -61,8 +61,6 @@ master: extraVolumes: "" extraVolumeMounts: "" - # enablePVC will create a pvc for filer for data persistence. - enablePVC: false # storage and storageClass are the settings for configuring stateful # storage for the master pods. storage should be set to the disk size of # the attached volume. storageClass is the class of storage which defaults @@ -277,6 +275,9 @@ filer: # Disable http request, only gRpc operations are allowed disableHttp: false + # enablePVC will create a pvc for filer for data persistence. + enablePVC: false + # storage and storageClass are the settings for configuring stateful # storage for the master pods. storage should be set to the disk size of # the attached volume. storageClass is the class of storage which defaults |
