From 05ea1c45ed4b6583b81e5460961d2caaf72a3f57 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 14 Apr 2022 13:01:53 +0200 Subject: [PATCH] chore(deps): update helm values restic/restic to v0.13.1 (#77) Co-authored-by: Renovate Bot Co-authored-by: Maurice Meyer --- charts/backup/Chart.yaml | 2 +- charts/backup/README.md | 8 ++++---- charts/backup/values.yaml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/charts/backup/Chart.yaml b/charts/backup/Chart.yaml index d6f85b0b..122394cd 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: 2.6.4 +version: 2.7.0 maintainers: - name: morremeyer email: charts@mor.re diff --git a/charts/backup/README.md b/charts/backup/README.md index 19fc4901..cf2d7cf6 100644 --- a/charts/backup/README.md +++ b/charts/backup/README.md @@ -1,6 +1,6 @@ # backup -![Version: 2.6.4](https://img.shields.io/badge/Version-2.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 2.7.0](https://img.shields.io/badge/Version-2.7.0-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. @@ -46,12 +46,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.12.1"` | | +| backupJob.backup.image.tag | string | `"0.13.1"` | | | 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.12.1"},"resources":{}}` | Configuration for the repository init container | +| backupJob.init | object | `{"image":{"pullPolicy":"IfNotPresent","repository":"restic/restic","tag":"0.13.1"},"resources":{}}` | Configuration for the repository init container | | backupJob.init.resources | object | `{}` | resources for the init container | | backupJob.nodeSelector | object | `{}` | | | backupJob.restartPolicy | string | `"OnFailure"` | restartPolicy for the backup Jobs | @@ -67,7 +67,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.12.1"` | | +| cleanupJob.image.tag | string | `"0.13.1"` | | | 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 9ea08c5b..a752ffbe 100644 --- a/charts/backup/values.yaml +++ b/charts/backup/values.yaml @@ -45,7 +45,7 @@ backupJob: image: repository: restic/restic pullPolicy: IfNotPresent - tag: 0.12.1 + tag: 0.13.1 # -- command for the backup. Defaults to '/usr/bin/restic' by the upstream container. command: ~ @@ -61,7 +61,7 @@ backupJob: image: repository: restic/restic pullPolicy: IfNotPresent - tag: 0.12.1 + tag: 0.13.1 # -- resources for the init container resources: {} @@ -94,7 +94,7 @@ cleanupJob: image: repository: restic/restic pullPolicy: IfNotPresent - tag: 0.12.1 + tag: 0.13.1 # -- command for the cleanup. Defaults to '/usr/bin/restic' by the upstream container. command: ~