Files
infrastructure/clusters/cl01tl/helm/backrest/values.yaml
Renovate Bot 07e974b121
All checks were successful
render-manifests-push / render-manifests-push (push) Has been skipped
lint-test-helm / lint-helm (push) Successful in 11s
renovate / renovate (push) Successful in 2m52s
chore(deps): update dependency garethgeorge/backrest to v1.12.0 (#4156)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [garethgeorge/backrest](https://github.com/garethgeorge/backrest) | minor | `v1.11.2` → `v1.12.0` |

---

### Release Notes

<details>
<summary>garethgeorge/backrest (garethgeorge/backrest)</summary>

### [`v1.12.0`](https://github.com/garethgeorge/backrest/releases/tag/v1.12.0)

[Compare Source](https://github.com/garethgeorge/backrest/compare/v1.11.2...v1.12.0)

Happy to announce 1.12.0 -- in particular I'd like to highlight simplified SFTP management. Backrest can now instantiate SSH keypairs for you (stored alongside your config.json) and can automate the process of installing them on your remote server and configuring your known\_hosts.

As usual, this release also comes with quality of life improvements and bug fixes including new translations, restoring some tool tips that were lost in the move to Chakra UI, and stricter cronexpr validations.

##### Features

- add a --from-source option to install.sh to build backrest locally ([b1d5403](b1d5403e1f))
- add Dry Run Backup action ([#&#8203;1098](https://github.com/garethgeorge/backrest/issues/1098)) ([4063d8f](4063d8fafc))
- add japanese ([#&#8203;1114](https://github.com/garethgeorge/backrest/issues/1114)) ([92b8254](92b82546b8))
- SFTP configuration UI (enabled for `sftp:` URIs) with support for SSH key bootstrapping ([#&#8203;961](https://github.com/garethgeorge/backrest/issues/961)) ([3250ff4](3250ff481d))

##### Bug Fixes

- enable systemd unit, change rc service ([#&#8203;1113](https://github.com/garethgeorge/backrest/issues/1113)) ([ec4764c](ec4764c909))
- spanish translations improved with context and standardized ([#&#8203;1117](https://github.com/garethgeorge/backrest/issues/1117)) ([844ed1d](844ed1db33))
- stricter cronexpr validation ([45d980b](45d980b16e))
- tooltips and section headers for check and prune policies ([9130539](91305396f8))
- use cmd.SysProcAttr.HideWindow to spawn background processes on Windows ([#&#8203;1101](https://github.com/garethgeorge/backrest/issues/1101)) ([7638b5f](7638b5f2dc))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNS43IiwidXBkYXRlZEluVmVyIjoiNDMuMjUuOCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiaW1hZ2UiXX0=-->

Reviewed-on: #4156
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net>
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
2026-02-22 17:27:24 +00:00

128 lines
2.8 KiB
YAML

backrest:
controllers:
main:
type: deployment
replicas: 1
strategy: Recreate
containers:
main:
image:
repository: garethgeorge/backrest
tag: v1.12.0
pullPolicy: IfNotPresent
env:
- name: TZ
value: America/Chicago
- name: BACKREST_DATA
value: /data
- name: BACKREST_CONFIG
value: /config/config.json
- name: XDG_CACHE_HOME
value: /cache
- name: TMPDIR
value: /tmp
resources:
requests:
cpu: 10m
memory: 256Mi
service:
main:
controller: main
ports:
http:
port: 80
targetPort: 9898
protocol: TCP
route:
main:
kind: HTTPRoute
parentRefs:
- group: gateway.networking.k8s.io
kind: Gateway
name: traefik-gateway
namespace: traefik
hostnames:
- backrest.alexlebens.net
rules:
- backendRefs:
- group: ''
kind: Service
name: backrest
port: 80
weight: 100
matches:
- path:
type: PathPrefix
value: /
persistence:
data:
forceRename: backrest-data
storageClass: ceph-block
accessMode: ReadWriteOnce
size: 10Gi
retain: true
advancedMounts:
main:
main:
- path: /data
readOnly: false
config:
forceRename: backrest-config
storageClass: ceph-block
accessMode: ReadWriteOnce
size: 1Gi
retain: true
advancedMounts:
main:
main:
- path: /config
readOnly: false
cache:
type: emptyDir
advancedMounts:
main:
main:
- path: /cache
readOnly: false
tmp:
type: emptyDir
advancedMounts:
main:
main:
- path: /tmp
readOnly: false
storage:
existingClaim: backrest-nfs-storage
advancedMounts:
main:
main:
- path: /mnt/storage
readOnly: true
share:
existingClaim: backrest-nfs-share
advancedMounts:
main:
main:
- path: /mnt/share
readOnly: true
volsync-target-data:
pvcTarget: backrest-data
local:
enabled: true
schedule: 6 8 * * *
remote:
enabled: false
external:
enabled: true
schedule: 6 9 * * *
volsync-target-config:
pvcTarget: backrest-config
local:
enabled: true
schedule: 8 8 * * *
remote:
enabled: false
external:
enabled: true
schedule: 8 9 * * *