From 186e42345e210bc36f07ca51cdadcdaff2fc672c Mon Sep 17 00:00:00 2001 From: Konstantin Lebedev Date: Sun, 25 Oct 2020 20:34:55 +0500 Subject: [PATCH] use collection optionaly --- k8s/seaweedfs/templates/cronjob.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/k8s/seaweedfs/templates/cronjob.yaml b/k8s/seaweedfs/templates/cronjob.yaml index cc8992a6a..ad4406d4f 100644 --- a/k8s/seaweedfs/templates/cronjob.yaml +++ b/k8s/seaweedfs/templates/cronjob.yaml @@ -9,7 +9,6 @@ spec: concurrencyPolicy: Forbid failedJobsHistoryLimit: 2 successfulJobsHistoryLimit: 2 - startingDeadlineSeconds: 300 jobTemplate: spec: backoffLimit: 2 @@ -35,7 +34,11 @@ spec: - -c - | set -ex - echo -e "lock\nvolume.balance -force{{ if .Values.volume.dataCenter }} -dataCenter {{ .Values.volume.dataCenter }}{{ end }}{{ if .Values.cronjob.collection }} -collection {{ .Values.cronjob.collection }}{{ end }}\nvolume.fix.replication\nunlock\n" | \ + echo -e "lock\n\ + volume.balance -force\ + {{ if .Values.volume.dataCenter }} -dataCenter {{ .Values.volume.dataCenter }}{{ end }}\ + {{ if .Values.cronjob.collection }} -collection {{ .Values.cronjob.collection }}{{ end }}\n\ + volume.fix.replication\nunlock\n" | \ /usr/bin/weed shell \ {{- if .Values.cronjob.master }} -master {{ .Values.cronjob.master }} \