image: repository: tccr.io/truecharts/babybuddy pullPolicy: IfNotPresent tag: v1.9.3@sha256:6fa60f37bc4b5be5d07b05344e7343f15b9103642fc04305dca0d751ca8f4836 # See more environment variables in the babybuddy documentation # https://github.com/linuxserver/docker-babybuddy#parameters env: DB_ENGINE: "django.db.backends.postgresql" DB_NAME: "{{ .Values.postgresql.postgresqlDatabase }}" DB_USER: "{{ .Values.postgresql.postgresqlUsername }}" DB_PORT: "5432" envValueFrom: DB_PASSWORD: secretKeyRef: name: dbcreds key: postgresql-password DB_HOST: secretKeyRef: name: dbcreds key: plainhost securityContext: allowPrivilegeEscalation: true runAsNonRoot: false podSecurityContext: runAsUser: 0 runAsGroup: 0 service: main: ports: main: port: 10069 targetPort: 8000 persistence: config: enabled: true mountPath: "/config" varrun: enabled: true # Enabled postgres postgresql: enabled: true existingSecret: "dbcreds" postgresqlUsername: babybuddy postgresqlDatabase: babybuddy