diff options
| author | chrislu <chris.lu@gmail.com> | 2022-04-10 13:23:55 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2022-04-10 13:23:55 -0700 |
| commit | a9b4f0df040919cc2694d787430cb73a95b683bf (patch) | |
| tree | 577b11bc5ec6ea46cdf0a1db6722467aff3d48b6 | |
| parent | 261ba0208eaee06d6ff3f08b7e3e2f83df7f3cde (diff) | |
| download | seaweedfs-a9b4f0df040919cc2694d787430cb73a95b683bf.tar.xz seaweedfs-a9b4f0df040919cc2694d787430cb73a95b683bf.zip | |
default volumeSizeLimitMB to 1000
change it to 1GB, to be consistent with docker images. On k8s and docker, the initial disk spaces usually are not large enough, causing many new users asking about the "no free volume" question.
| -rw-r--r-- | k8s/helm_charts2/values.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/k8s/helm_charts2/values.yaml b/k8s/helm_charts2/values.yaml index eab4ef84d..3ffb1824f 100644 --- a/k8s/helm_charts2/values.yaml +++ b/k8s/helm_charts2/values.yaml @@ -41,7 +41,7 @@ master: grpcPort: 19333 ipBind: "0.0.0.0" volumePreallocate: false - volumeSizeLimitMB: 300 + volumeSizeLimitMB: 1000 loggingOverrideLevel: null #number of seconds between heartbeats, default 5 pulseSeconds: null |
