fixup! fix: babybuddy

This commit is contained in:
auricom
2024-05-05 12:31:29 +02:00
parent 404b1362ef
commit 2ed52ecb7f
3 changed files with 10 additions and 8 deletions

View File

@@ -43,7 +43,7 @@ spec:
migrations: migrations:
image: image:
repository: ghcr.io/auricom/babybuddy repository: ghcr.io/auricom/babybuddy
tag: 2.3.1@sha256:5d7cffc9565d56cd941c038b835982ffb71bfbaeb4c593fb6163aa5229fb1892 tag: 2.3.1@sha256:80765c07f6e4a1b38aea7955ea087bd1c8b0f47269dfe0aed2583e3a42c76df6
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
envFrom: *envFrom envFrom: *envFrom
command: command:
@@ -62,7 +62,7 @@ spec:
app: app:
image: image:
repository: ghcr.io/auricom/babybuddy repository: ghcr.io/auricom/babybuddy
tag: 2.3.1@sha256:5d7cffc9565d56cd941c038b835982ffb71bfbaeb4c593fb6163aa5229fb1892 tag: 2.3.1@sha256:dda99f3522e9e366af9c655991978b7cf08dc78ccd41059f889bdac633ae8d28
env: env:
TZ: ${TIMEZONE} TZ: ${TIMEZONE}
EMAIL_HOST: smtp-relay.default.svc.cluster.local. EMAIL_HOST: smtp-relay.default.svc.cluster.local.

View File

@@ -26,3 +26,5 @@ spec:
substitute: substitute:
APP: *app APP: *app
VOLSYNC_CAPACITY: 2Gi VOLSYNC_CAPACITY: 2Gi
VOLSYNC_UID: "65532"
VOLSYNC_GID: "65532"

View File

@@ -41,9 +41,9 @@ spec:
storageClassName: "${VOLSYNC_STORAGECLASS:-rook-ceph-block}" storageClassName: "${VOLSYNC_STORAGECLASS:-rook-ceph-block}"
accessModes: ["${VOLSYNC_ACCESSMODES:-ReadWriteOnce}"] accessModes: ["${VOLSYNC_ACCESSMODES:-ReadWriteOnce}"]
moverSecurityContext: moverSecurityContext:
runAsUser: 568 runAsUser: ${VOLSYNC_UID:-568}
runAsGroup: 568 runAsGroup: ${VOLSYNC_GID:-568}
fsGroup: 568 fsGroup: ${VOLSYNC_GID:-568}
retain: retain:
hourly: 24 hourly: 24
daily: 7 daily: 7
@@ -68,6 +68,6 @@ spec:
accessModes: ["${VOLSYNC_ACCESSMODES:-ReadWriteOnce}"] accessModes: ["${VOLSYNC_ACCESSMODES:-ReadWriteOnce}"]
capacity: "${VOLSYNC_CAPACITY}" capacity: "${VOLSYNC_CAPACITY}"
moverSecurityContext: moverSecurityContext:
runAsUser: 568 runAsUser: ${VOLSYNC_UID:-568}
runAsGroup: 568 runAsGroup: ${VOLSYNC_GID:-568}
fsGroup: 568 fsGroup: ${VOLSYNC_GID:-568}