Elasticsearch: Add configurable backoffLimit to templates job

This change allows us to control the backofflimit for this job

Change-Id: I9c3ccc0842a0e5c31b7838576648dae966b15a6e
This commit is contained in:
Steven Fitzpatrick 2021-04-16 18:01:31 +00:00
parent 704d808514
commit 38e6023351
4 changed files with 5 additions and 1 deletions

@ -15,7 +15,7 @@ apiVersion: v1
appVersion: v7.6.2
description: OpenStack-Helm ElasticSearch
name: elasticsearch
version: 0.2.2
version: 0.2.3
home: https://www.elastic.co/
sources:
- https://github.com/elastic/elasticsearch

@ -28,6 +28,7 @@ metadata:
annotations:
{{ tuple $envAll | include "helm-toolkit.snippets.release_uuid" }}
spec:
backoffLimit: {{ .Values.jobs.create_elasticsearch_templates.backoffLimit }}
template:
metadata:
labels:

@ -430,6 +430,8 @@ jobs:
history:
success: 3
failed: 1
create_elasticsearch_templates:
backoffLimit: 6
conf:
httpd: |

@ -12,4 +12,5 @@ elasticsearch:
- 0.2.0 Add more S3 configuration options
- 0.2.1 Make templates job more robust & allow overrides
- 0.2.2 Update the ES curator config to {}
- 0.2.3 Add configurable backoffLimit to templates job
...