aboutsummaryrefslogtreecommitdiff
path: root/k8s/helm_charts2/values.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'k8s/helm_charts2/values.yaml')
-rw-r--r--k8s/helm_charts2/values.yaml6
1 files changed, 4 insertions, 2 deletions
diff --git a/k8s/helm_charts2/values.yaml b/k8s/helm_charts2/values.yaml
index d855b509d..08cfe43b1 100644
--- a/k8s/helm_charts2/values.yaml
+++ b/k8s/helm_charts2/values.yaml
@@ -41,8 +41,7 @@ master:
grpcPort: 19333
ipBind: "0.0.0.0"
volumePreallocate: false
- #Master stops directing writes to oversized volumes
- volumeSizeLimitMB: 30000
+ volumeSizeLimitMB: 1000
loggingOverrideLevel: null
#number of seconds between heartbeats, default 5
pulseSeconds: null
@@ -62,6 +61,8 @@ 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
@@ -358,6 +359,7 @@ filer:
WEED_MYSQL_CONNECTION_MAX_LIFETIME_SECONDS: "600"
# enable usage of memsql as filer backend
WEED_MYSQL_INTERPOLATEPARAMS: "true"
+ # if you want to use leveldb2, then should enable "enablePVC". or you may lose your data.
WEED_LEVELDB2_ENABLED: "false"
# with http DELETE, by default the filer would check whether a folder is empty.
# recursive_delete will delete all sub folders and files, similar to "rm -Rf"