We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f146fee commit 6e6077cCopy full SHA for 6e6077c
2 files changed
charts/cloudquery/templates/job.yaml
@@ -8,6 +8,7 @@ metadata:
8
{{- include "cloudquery.annotations" . }}
9
spec:
10
backoffLimit: 0
11
+ ttlSecondsAfterFinished: {{ .Values.job.ttlSecondsAfterFinished | default 259200 }}
12
template:
13
metadata:
14
labels:
charts/cloudquery/values.yaml
@@ -82,6 +82,8 @@ cronJobFailedJobsLimit: 1
82
job:
83
# -- Create a job that runs once upon installation.
84
enabled: false
85
+ # -- (int) How long to retain the job after it has finished. Default is 259200 seconds (3 days).
86
+ ttlSecondsAfterFinished: 259200
87
88
# -- CloudQuery cloudquery.yml content
89
# @default -- The chart will use a default CloudQuery aws config
0 commit comments