We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc89225 commit 4b8c884Copy full SHA for 4b8c884
charts/paperlessngx-backup/templates/configmap.yaml
@@ -56,6 +56,7 @@ data:
56
ncftpput \
57
-u "${FTP_USERNAME}" \
58
-p "${FTP_PASSWORD}" \
59
+ -t ${{ .Values.timeout }} \
60
"${FTP_HOST}" \
61
"${FTP_PATH}" \
62
"/backup-plngx/${FILENAME_ZIP}"
charts/paperlessngx-backup/templates/cronjob.yaml
@@ -9,7 +9,7 @@ spec:
9
jobTemplate:
10
spec:
11
backoffLimit: 2
12
- activeDeadlineSeconds: {{ .Values.activeDeadlineSeconds }}
+ activeDeadlineSeconds: {{ .Values.timeout }}
13
template:
14
metadata:
15
name: "{{ include "plngxbackup.fullname" . }}"
charts/paperlessngx-backup/values.yaml
@@ -18,4 +18,4 @@ ftp:
18
password: ""
19
path: "."
20
21
-activeDeadlineSeconds: 60
+timeout: 60
0 commit comments