diff --git a/charts/backup/Chart.yaml b/charts/backup/Chart.yaml index ea114853..f909adb1 100644 --- a/charts/backup/Chart.yaml +++ b/charts/backup/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: backup description: Chart to back up PVCs with restic and regularly clean up the snapshots. type: application -version: 3.3.5 +version: 3.3.6 maintainers: - name: morremeyer - name: ekeih diff --git a/charts/backup/README.md b/charts/backup/README.md index 8f4ca7c4..3d6590d6 100644 --- a/charts/backup/README.md +++ b/charts/backup/README.md @@ -1,6 +1,6 @@ # backup -![Version: 3.3.5](https://img.shields.io/badge/Version-3.3.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 3.3.6](https://img.shields.io/badge/Version-3.3.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Chart to back up PVCs with restic and regularly clean up the snapshots. @@ -53,12 +53,12 @@ The following table lists the configurable parameters of the chart and the defau | backupJob.backup.command | string | `nil` | command for the backup. Defaults to '/usr/bin/restic' by the upstream container. | | backupJob.backup.image.pullPolicy | string | `"IfNotPresent"` | | | backupJob.backup.image.repository | string | `"restic/restic"` | | -| backupJob.backup.image.tag | string | `"0.16.4"` | | +| backupJob.backup.image.tag | string | `"0.17.0"` | | | backupJob.backup.resources | object | `{}` | resources for the backup container | | backupJob.concurrencyPolicy | string | `"Forbid"` | concurrencyPolicy for the backup Jobs | | backupJob.env | list | `[]` | Additional environment values to load. Only applies to the backup container, not the init containers that initializes the restic repository. Has to match the pod.spec.containers.env spec. | | backupJob.failedJobsHistoryLimit | int | `1` | failedJobsHistoryLimit for the backup Jobs | -| backupJob.init | object | `{"image":{"pullPolicy":"IfNotPresent","repository":"restic/restic","tag":"0.16.4"},"resources":{}}` | Configuration for the repository init container | +| backupJob.init | object | `{"image":{"pullPolicy":"IfNotPresent","repository":"restic/restic","tag":"0.17.0"},"resources":{}}` | Configuration for the repository init container | | backupJob.init.resources | object | `{}` | resources for the init container | | backupJob.nodeSelector | object | `{}` | | | backupJob.schedule | string | `"17 3 * * *"` | when to run backups | @@ -74,7 +74,7 @@ The following table lists the configurable parameters of the chart and the defau | cleanupJob.failedJobsHistoryLimit | int | `1` | failedJobsHistoryLimit for the cleanup Jobs | | cleanupJob.image.pullPolicy | string | `"IfNotPresent"` | | | cleanupJob.image.repository | string | `"restic/restic"` | | -| cleanupJob.image.tag | string | `"0.16.4"` | | +| cleanupJob.image.tag | string | `"0.17.0"` | | | cleanupJob.keepDaily | int | `8` | number of daily snapshots to keep | | cleanupJob.keepMonthly | int | `13` | number of monthly snapshots to keep | | cleanupJob.keepWeekly | int | `5` | number of weekly snapshots to keep | diff --git a/charts/backup/values.yaml b/charts/backup/values.yaml index 81e1f6ab..c79424cd 100644 --- a/charts/backup/values.yaml +++ b/charts/backup/values.yaml @@ -58,7 +58,7 @@ backupJob: image: repository: restic/restic pullPolicy: IfNotPresent - tag: 0.16.4 + tag: 0.17.0 # -- command for the backup. Defaults to '/usr/bin/restic' by the upstream container. command: ~ @@ -77,7 +77,7 @@ backupJob: image: repository: restic/restic pullPolicy: IfNotPresent - tag: 0.16.4 + tag: 0.17.0 # -- resources for the init container resources: {} @@ -107,7 +107,7 @@ cleanupJob: image: repository: restic/restic pullPolicy: IfNotPresent - tag: 0.16.4 + tag: 0.17.0 # -- command for the cleanup. Defaults to '/usr/bin/restic' by the upstream container. command: ~