fix: support startingDeadlineSeconds
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Markus Pesch 2022-02-10 20:53:52 +01:00
parent 0a4a53a296
commit 693b75bd3c
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
2 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,9 @@ spec:
{{- with .Values.cronjob.successfulJobsHistoryLimit }} {{- with .Values.cronjob.successfulJobsHistoryLimit }}
successfulJobsHistoryLimit: {{ . }} successfulJobsHistoryLimit: {{ . }}
{{- end }} {{- end }}
{{- with .Values.cronjob.startingDeadlineSeconds }}
startingDeadlineSeconds: {{ . }}
{{- end }}
jobTemplate: jobTemplate:
spec: spec:
template: template:

View File

@ -41,6 +41,7 @@ cronjob:
concurrencyPolicy: Forbid concurrencyPolicy: Forbid
failedJobsHistoryLimit: 3 failedJobsHistoryLimit: 3
successfulJobsHistoryLimit: 1 successfulJobsHistoryLimit: 1
startingDeadlineSeconds: ''
renovate: renovate:
env: {} env: {}