Commit 1b5dff10 authored by David McKay's avatar David McKay

fix: version bumps

parent a5bd8b2a
apiVersion: v1 apiVersion: v1
name: influxdb name: influxdb
version: 4.8.7 version: 4.8.8
appVersion: 1.8.0 appVersion: 1.8.0
description: Scalable datastore for metrics, events, and real-time analytics. description: Scalable datastore for metrics, events, and real-time analytics.
keywords: keywords:
......
...@@ -108,6 +108,7 @@ The following table lists configurable parameters, their descriptions, and their ...@@ -108,6 +108,7 @@ The following table lists configurable parameters, their descriptions, and their
| backup.azure | Azure Blob Storage config | `nil` | backup.azure | Azure Blob Storage config | `nil`
| backup.s3 | Amazon S3 (or compatible) config | `nil` | backup.s3 | Amazon S3 (or compatible) config | `nil`
| backup.schedule | Schedule to run jobs in cron format | `0 0 * * *` | | backup.schedule | Schedule to run jobs in cron format | `0 0 * * *` |
| backup.startingDeadlineSeconds | Deadline in seconds for starting the job if it misses its scheduled time for any reason | `nil` |
| backup.annotations | Annotations for backup cronjob | {} | | backup.annotations | Annotations for backup cronjob | {} |
| backup.podAnnotations | Annotations for backup cronjob pods | {} | | backup.podAnnotations | Annotations for backup cronjob pods | {} |
| backup.persistence.enabled | Boolean to enable and disable persistance | false | | backup.persistence.enabled | Boolean to enable and disable persistance | false |
......
...@@ -10,6 +10,7 @@ metadata: ...@@ -10,6 +10,7 @@ metadata:
{{- toYaml .Values.backup.annotations | nindent 4 }} {{- toYaml .Values.backup.annotations | nindent 4 }}
spec: spec:
schedule: {{ .Values.backup.schedule | quote }} schedule: {{ .Values.backup.schedule | quote }}
startingDeadlineSeconds: {{ .Values.backup.startingDeadlineSeconds }}
concurrencyPolicy: Forbid concurrencyPolicy: Forbid
jobTemplate: jobTemplate:
spec: spec:
......
...@@ -286,6 +286,7 @@ backup: ...@@ -286,6 +286,7 @@ backup:
accessMode: ReadWriteOnce accessMode: ReadWriteOnce
size: 8Gi size: 8Gi
schedule: "0 0 * * *" schedule: "0 0 * * *"
startingDeadlineSeconds: ""
annotations: {} annotations: {}
podAnnotations: {} podAnnotations: {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment