mirror of
https://github.com/bitnami/charts.git
synced 2026-04-05 00:37:12 +08:00
[bitnami/postgresql] Add TimeZone to CronJob of backup (#19516)
* [bitnami/postgresql] Add TimeZone to CronJob of backup Signed-off-by: Bruno Melo <bsilva.melo@gmail.com> * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> --------- Signed-off-by: Bruno Melo <bsilva.melo@gmail.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Celia Garcia <61272496+CeliaGMqrz@users.noreply.github.com> Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com> Co-authored-by: Celia Garcia <61272496+CeliaGMqrz@users.noreply.github.com> Co-authored-by: Fran Mulero <fmulero@vmware.com>
This commit is contained in:
@@ -35,4 +35,4 @@ maintainers:
|
||||
name: postgresql
|
||||
sources:
|
||||
- https://github.com/bitnami/charts/tree/main/bitnami/postgresql
|
||||
version: 13.0.2
|
||||
version: 13.1.0
|
||||
|
||||
@@ -373,6 +373,7 @@ kubectl delete pvc -l release=my-release
|
||||
| ------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| `backup.enabled` | Enable the logical dump of the database "regularly" | `false` |
|
||||
| `backup.cronjob.schedule` | Set the cronjob parameter schedule | `@daily` |
|
||||
| `backup.cronjob.timeZone` | Set the cronjob parameter timeZone | `""` |
|
||||
| `backup.cronjob.concurrencyPolicy` | Set the cronjob parameter concurrencyPolicy | `Allow` |
|
||||
| `backup.cronjob.failedJobsHistoryLimit` | Set the cronjob parameter failedJobsHistoryLimit | `1` |
|
||||
| `backup.cronjob.successfulJobsHistoryLimit` | Set the cronjob parameter successfulJobsHistoryLimit | `3` |
|
||||
|
||||
@@ -19,6 +19,9 @@ metadata:
|
||||
{{- end }}
|
||||
spec:
|
||||
schedule: {{ quote .Values.backup.cronjob.schedule }}
|
||||
{{- if .Values.backup.cronjob.timezone }}
|
||||
timeZone: {{ .Values.backup.cronjob.timezone | quote }}
|
||||
{{- end }}
|
||||
concurrencyPolicy: {{ .Values.backup.cronjob.concurrencyPolicy }}
|
||||
failedJobsHistoryLimit: {{ .Values.backup.cronjob.failedJobsHistoryLimit }}
|
||||
successfulJobsHistoryLimit: {{ .Values.backup.cronjob.successfulJobsHistoryLimit }}
|
||||
|
||||
@@ -1087,6 +1087,8 @@ backup:
|
||||
cronjob:
|
||||
## @param backup.cronjob.schedule Set the cronjob parameter schedule
|
||||
schedule: "@daily"
|
||||
## @param backup.cronjob.timeZone Set the cronjob parameter timeZone
|
||||
timeZone: ""
|
||||
## @param backup.cronjob.concurrencyPolicy Set the cronjob parameter concurrencyPolicy
|
||||
concurrencyPolicy: Allow
|
||||
## @param backup.cronjob.failedJobsHistoryLimit Set the cronjob parameter failedJobsHistoryLimit
|
||||
|
||||
Reference in New Issue
Block a user