Elasticsearch: Allow override of job back off limits and deadlines
this updates the Elasticsearch cluster wait and snapshot repo jobs to include values overrides for the job backoff limits and the active deadline seconds field. This allows for tweaking beyond the standard defaults for kubernetes jobs Change-Id: I1f95a635ab4dfdb3718d5d4fa668c64a9095e899 Signed-off-by: Steve Wilkerson <sw5822@att.com>
This commit is contained in:
parent
c34dbeeec8
commit
1ee476b197
@ -29,6 +29,7 @@ metadata:
|
||||
annotations:
|
||||
{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
|
||||
spec:
|
||||
backoffLimit: {{ .Values.jobs.es_cluster_wait.backoffLimit }}
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
@ -36,6 +37,7 @@ spec:
|
||||
spec:
|
||||
{{ dict "envAll" $envAll "application" "es_cluster_wait" | include "helm-toolkit.snippets.kubernetes_pod_security_context" | indent 6 }}
|
||||
serviceAccountName: {{ $serviceAccountName }}
|
||||
activeDeadlineSeconds: {{ .Values.jobs.es_cluster_wait.activeDeadlineSeconds }}
|
||||
restartPolicy: OnFailure
|
||||
nodeSelector:
|
||||
{{ .Values.labels.job.node_selector_key }}: {{ .Values.labels.job.node_selector_value | quote }}
|
||||
|
@ -30,6 +30,7 @@ metadata:
|
||||
annotations:
|
||||
{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
|
||||
spec:
|
||||
backoffLimit: {{ .Values.jobs.snapshot_repository.backoffLimit }}
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
@ -37,6 +38,7 @@ spec:
|
||||
spec:
|
||||
{{ dict "envAll" $envAll "application" "snapshot_repository" | include "helm-toolkit.snippets.kubernetes_pod_security_context" | indent 6 }}
|
||||
serviceAccountName: {{ $serviceAccountName }}
|
||||
activeDeadlineSeconds: {{ .Values.jobs.snapshot_repository.activeDeadlineSeconds }}
|
||||
restartPolicy: OnFailure
|
||||
nodeSelector:
|
||||
{{ .Values.labels.job.node_selector_key }}: {{ .Values.labels.job.node_selector_value | quote }}
|
||||
|
@ -364,6 +364,12 @@ jobs:
|
||||
history:
|
||||
success: 3
|
||||
failed: 1
|
||||
es_cluster_wait:
|
||||
backoffLimit: 6
|
||||
activeDeadlineSeconds: 600
|
||||
snapshot_repository:
|
||||
backoffLimit: 6
|
||||
activeDeadlineSeconds: 600
|
||||
|
||||
conf:
|
||||
httpd: |
|
||||
|
Loading…
Reference in New Issue
Block a user