We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34d227c commit 92e701fCopy full SHA for 92e701f
stable/app/Chart.yaml
@@ -15,4 +15,4 @@ type: application
15
# This is the chart version. This version number should be incremented each time you make changes
16
# to the chart and its templates, including the app version.
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
-version: 0.10.0
+version: 0.10.1
stable/app/templates/cron.yaml
@@ -15,7 +15,7 @@ spec:
schedule: {{ $job.schedule | quote }}
jobTemplate:
spec:
- backoffLimit: {{ $job.backoffLimit | default 4 }}
+ backoffLimit: {{ if hasKey $job "backoffLimit" }}{{ $job.backoffLimit }}{{ else }}4{{ end }}
19
template:
20
metadata:
21
annotations:
0 commit comments