fibbanachi
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
24 additions and
4 deletions
-
k8s/helm_charts2/templates/filer-statefulset.yaml
-
k8s/helm_charts2/templates/master-statefulset.yaml
-
k8s/helm_charts2/templates/s3-deployment.yaml
-
k8s/helm_charts2/templates/volume-statefulset.yaml
|
|
@ -101,7 +101,12 @@ spec: |
|
|
|
- "/bin/sh" |
|
|
|
- "-ec" |
|
|
|
- | |
|
|
|
exec /usr/bin/weed -logdir=/logs \ |
|
|
|
exec /usr/bin/weed \ |
|
|
|
{{- if eq .Values.filer.logs.type "hostPath" }} |
|
|
|
-logdir=/logs \ |
|
|
|
{{- else }} |
|
|
|
-logtostderr=true \ |
|
|
|
{{- end }} |
|
|
|
{{- if .Values.filer.loggingOverrideLevel }} |
|
|
|
-v={{ .Values.filer.loggingOverrideLevel }} \ |
|
|
|
{{- else }} |
|
|
|
|
|
@ -90,7 +90,12 @@ spec: |
|
|
|
- "/bin/sh" |
|
|
|
- "-ec" |
|
|
|
- | |
|
|
|
exec /usr/bin/weed -logdir=/logs \ |
|
|
|
exec /usr/bin/weed \ |
|
|
|
{{- if eq .Values.master.logs.type "hostPath" }} |
|
|
|
-logdir=/logs \ |
|
|
|
{{- else }} |
|
|
|
-logtostderr=true \ |
|
|
|
{{- end }} |
|
|
|
{{- if .Values.master.loggingOverrideLevel }} |
|
|
|
-v={{ .Values.master.loggingOverrideLevel }} \ |
|
|
|
{{- else }} |
|
|
|
|
|
@ -72,7 +72,12 @@ spec: |
|
|
|
- "/bin/sh" |
|
|
|
- "-ec" |
|
|
|
- | |
|
|
|
exec /usr/bin/weed -logdir=/logs \ |
|
|
|
exec /usr/bin/weed \ |
|
|
|
{{- if eq .Values.s3.logs.type "hostPath" }} |
|
|
|
-logdir=/logs \ |
|
|
|
{{- else }} |
|
|
|
-logtostderr=true \ |
|
|
|
{{- end }} |
|
|
|
{{- if .Values.s3.loggingOverrideLevel }} |
|
|
|
-v={{ .Values.s3.loggingOverrideLevel }} \ |
|
|
|
{{- else }} |
|
|
|
|
|
@ -93,7 +93,12 @@ spec: |
|
|
|
- "/bin/sh" |
|
|
|
- "-ec" |
|
|
|
- | |
|
|
|
exec /usr/bin/weed -logdir=/logs \ |
|
|
|
exec /usr/bin/weed \ |
|
|
|
{{- if eq .Values.volume.logs.type "hostPath" }} |
|
|
|
-logdir=/logs \ |
|
|
|
{{- else }} |
|
|
|
-logtostderr=true \ |
|
|
|
{{- end }} |
|
|
|
{{- if .Values.volume.loggingOverrideLevel }} |
|
|
|
-v={{ .Values.volume.loggingOverrideLevel }} \ |
|
|
|
{{- else }} |
|
|
|