Browse Source

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.
pull/2904/head
chrislu 3 years ago
parent
commit
a9b4f0df04
  1. 2
      k8s/helm_charts2/values.yaml

2
k8s/helm_charts2/values.yaml

@ -41,7 +41,7 @@ master:
grpcPort: 19333 grpcPort: 19333
ipBind: "0.0.0.0" ipBind: "0.0.0.0"
volumePreallocate: false volumePreallocate: false
volumeSizeLimitMB: 300
volumeSizeLimitMB: 1000
loggingOverrideLevel: null loggingOverrideLevel: null
#number of seconds between heartbeats, default 5 #number of seconds between heartbeats, default 5
pulseSeconds: null pulseSeconds: null

Loading…
Cancel
Save