chore: keep master statefulSet chart up-to-date (#6903)
This patch adds some missing master options to the helm chart of master statefulSet.
This commit is contained in:
@@ -3,4 +3,4 @@ description: SeaweedFS
|
|||||||
name: seaweedfs
|
name: seaweedfs
|
||||||
appVersion: "3.91"
|
appVersion: "3.91"
|
||||||
# Dev note: Trigger a helm chart release by `git tag -a helm-<version>`
|
# Dev note: Trigger a helm chart release by `git tag -a helm-<version>`
|
||||||
version: 4.0.391
|
version: 4.0.392
|
||||||
|
|||||||
@@ -164,8 +164,20 @@ spec:
|
|||||||
{{- if .Values.master.disableHttp }}
|
{{- if .Values.master.disableHttp }}
|
||||||
-disableHttp \
|
-disableHttp \
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.master.pulseSeconds }}
|
{{- if .Values.master.resumeState }}
|
||||||
-pulseSeconds={{ .Values.master.pulseSeconds }} \
|
-resumeState \
|
||||||
|
{{- end }}
|
||||||
|
{{- if .Values.master.raftHashicorp }}
|
||||||
|
-raftHashicorp \
|
||||||
|
{{- end }}
|
||||||
|
{{- if .Values.master.raftBootstrap }}
|
||||||
|
-raftBootstrap \
|
||||||
|
{{- end }}
|
||||||
|
{{- if .Values.master.electionTimeout }}
|
||||||
|
-electionTimeout={{ .Values.master.electionTimeout }} \
|
||||||
|
{{- end }}
|
||||||
|
{{- if .Values.master.heartbeatInterval }}
|
||||||
|
-heartbeatInterval={{ .Values.master.heartbeatInterval }} \
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.master.garbageThreshold }}
|
{{- if .Values.master.garbageThreshold }}
|
||||||
-garbageThreshold={{ .Values.master.garbageThreshold }} \
|
-garbageThreshold={{ .Values.master.garbageThreshold }} \
|
||||||
|
|||||||
@@ -61,8 +61,6 @@ master:
|
|||||||
volumePreallocate: false
|
volumePreallocate: false
|
||||||
volumeSizeLimitMB: 1000
|
volumeSizeLimitMB: 1000
|
||||||
loggingOverrideLevel: null
|
loggingOverrideLevel: null
|
||||||
# number of seconds between heartbeats, default 5
|
|
||||||
pulseSeconds: null
|
|
||||||
# threshold to vacuum and reclaim spaces, default 0.3 (30%)
|
# threshold to vacuum and reclaim spaces, default 0.3 (30%)
|
||||||
garbageThreshold: null
|
garbageThreshold: null
|
||||||
# Prometheus push interval in seconds, default 15
|
# Prometheus push interval in seconds, default 15
|
||||||
@@ -76,6 +74,18 @@ master:
|
|||||||
# Disable http request, only gRpc operations are allowed
|
# Disable http request, only gRpc operations are allowed
|
||||||
disableHttp: false
|
disableHttp: false
|
||||||
|
|
||||||
|
# Resume previous state on start master server
|
||||||
|
resumeState: false
|
||||||
|
# Use Hashicorp Raft
|
||||||
|
raftHashicorp: false
|
||||||
|
# Whether to bootstrap the Raft cluster. Only use it when use Hashicorp Raft
|
||||||
|
raftBootstrap: false
|
||||||
|
|
||||||
|
# election timeout of master servers
|
||||||
|
electionTimeout: "10s"
|
||||||
|
# heartbeat interval of master servers, and will be randomly multiplied by [1, 1.25)
|
||||||
|
heartbeatInterval: "300ms"
|
||||||
|
|
||||||
# Custom command line arguments to add to the master command
|
# Custom command line arguments to add to the master command
|
||||||
# Example to fix IPv6 metrics connectivity issues:
|
# Example to fix IPv6 metrics connectivity issues:
|
||||||
# extraArgs: ["-metricsIp", "0.0.0.0"]
|
# extraArgs: ["-metricsIp", "0.0.0.0"]
|
||||||
|
|||||||
Reference in New Issue
Block a user