Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
46b8df48f1
commit
351992080a
|
@ -1,11 +0,0 @@
|
|||
|
||||
|
||||
## [borg-server-1.1.2](https://github.com/truecharts/charts/compare/borg-server-1.0.4...borg-server-1.1.2) (2023-12-16)
|
||||
|
||||
### Chore
|
||||
|
||||
- fix move mistake and cleanup metadata
|
||||
- update helm general non-major ([#14784](https://github.com/truecharts/charts/issues/14784))
|
||||
- update container image ghcr.io/anotherstranger/borg-server to v2.2.1[@cb6d584](https://github.com/cb6d584) ([#16041](https://github.com/truecharts/charts/issues/16041))
|
||||
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [borg-server-1.1.3](https://github.com/truecharts/charts/compare/borg-server-1.1.2...borg-server-1.1.3) (2023-12-17)
|
||||
|
||||
### Fix
|
||||
|
||||
- add SYS_CHROOT capability ([#15514](https://github.com/truecharts/charts/issues/15514))
|
||||
|
||||
|
||||
|
||||
|
||||
## [borg-server-1.1.2](https://github.com/truecharts/charts/compare/borg-server-1.0.4...borg-server-1.1.2) (2023-12-16)
|
||||
|
||||
### Chore
|
||||
|
@ -81,15 +90,6 @@
|
|||
|
||||
|
||||
|
||||
## [borg-server-1.1.0](https://github.com/truecharts/charts/compare/borg-server-1.0.4...borg-server-1.1.0) (2023-12-14)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image ghcr.io/anotherstranger/borg-server to v2.2.1[@cb6d584](https://github.com/cb6d584) ([#16041](https://github.com/truecharts/charts/issues/16041))
|
||||
|
||||
|
||||
|
||||
|
||||
## [borg-server-1.1.0](https://github.com/truecharts/charts/compare/borg-server-1.0.4...borg-server-1.1.0) (2023-12-14)
|
||||
|
||||
### Chore
|
|
@ -1,7 +1,7 @@
|
|||
kubeVersion: ">=1.24.0-0"
|
||||
apiVersion: v2
|
||||
name: borg-server
|
||||
version: 1.1.2
|
||||
version: 1.1.3
|
||||
appVersion: 2.2.1
|
||||
description: A borg Backup server
|
||||
home: https://truecharts.org/charts/stable/borg-server
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [borg-server-1.1.3](https://github.com/truecharts/charts/compare/borg-server-1.1.2...borg-server-1.1.3) (2023-12-17)
|
||||
|
||||
### Fix
|
||||
|
||||
- add SYS_CHROOT capability ([#15514](https://github.com/truecharts/charts/issues/15514))
|
||||
|
||||
|
|
@ -25,6 +25,11 @@ workload:
|
|||
env:
|
||||
BORG_UID: "{{ .Values.securityContext.container.PUID }}"
|
||||
BORG_GID: "{{ .Values.securityContext.pod.fsGroup }}"
|
||||
securityContext:
|
||||
capabilities:
|
||||
add:
|
||||
- SYS_CHROOT
|
||||
- KILL
|
||||
|
||||
persistence:
|
||||
borg:
|
Loading…
Reference in New Issue