mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable] [elasticsearch-curator] Make sure we can specify startingDeadlineSeconds for each cronjob. Add myself to chart maintainers. (#23278)
Signed-off-by: Adam Hamsik <adam.hamsik@lablabs.io> Co-authored-by: Marian Soltys <msoltys@pixelfederation.com>
This commit is contained in:
co-authored by
Marian Soltys
parent
5d1a6ab611
commit
01fe5e3217
@@ -2,7 +2,7 @@ apiVersion: v1
|
||||
appVersion: "5.7.6"
|
||||
description: A Helm chart for Elasticsearch Curator
|
||||
name: elasticsearch-curator
|
||||
version: 2.1.5
|
||||
version: 2.2.0
|
||||
home: https://github.com/elastic/curator
|
||||
keywords:
|
||||
- curator
|
||||
@@ -16,3 +16,5 @@ maintainers:
|
||||
email: cedric.dsm@gmail.com
|
||||
- name: gianrubio
|
||||
email: gianrubio@gmail.com
|
||||
- name: haad
|
||||
email: adam.hamsik@lablabs.io
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
approvers:
|
||||
- desaintmartin
|
||||
- gianrubio
|
||||
- haad
|
||||
reviewers:
|
||||
- desaintmartin
|
||||
- gianrubio
|
||||
- haad
|
||||
|
||||
@@ -52,6 +52,7 @@ their default values.
|
||||
| `cronjob.failedJobsHistoryLimit` | Specify the number of failed Jobs to keep | `nil` |
|
||||
| `cronjob.successfulJobsHistoryLimit` | Specify the number of completed Jobs to keep | `nil` |
|
||||
| `cronjob.jobRestartPolicy` | Control the Job restartPolicy | `Never` |
|
||||
| `cronjob.startingDeadlineSeconds` | Amount of time to try reschedule job if we can't run on time| `nil` |
|
||||
| `pod.annotations` | Annotations to add to the pod | {} |
|
||||
| `pod.labels` | Labels to add to the pod | {} |
|
||||
| `dryrun` | Run Curator in dry-run mode | `false` |
|
||||
|
||||
@@ -25,6 +25,9 @@ spec:
|
||||
{{- with .Values.cronjob.successfulJobsHistoryLimit }}
|
||||
successfulJobsHistoryLimit: {{ . }}
|
||||
{{- end }}
|
||||
{{- with .Values.cronjob.startingDeadlineSeconds }}
|
||||
startingDeadlineSeconds: {{ . }}
|
||||
{{- end }}
|
||||
jobTemplate:
|
||||
metadata:
|
||||
labels:
|
||||
|
||||
@@ -11,6 +11,7 @@ cronjob:
|
||||
failedJobsHistoryLimit: ""
|
||||
successfulJobsHistoryLimit: ""
|
||||
jobRestartPolicy: Never
|
||||
startingDeadlineSeconds: ""
|
||||
|
||||
pod:
|
||||
annotations: {}
|
||||
|
||||
Reference in New Issue
Block a user