TrueChartsClone/charts/stable/babybuddy/values.yaml

51 lines
978 B
YAML

image:
repository: tccr.io/truecharts/babybuddy
pullPolicy: IfNotPresent
tag: 1.12.2@sha256:1666e5ce53aa7d7660f2bd02d027f2635172eb86e94fa97d409a3e9131e8fc79
env:
DB_ENGINE: "django.db.backends.postgresql"
DB_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
DB_USER: "{{ .Values.postgresql.postgresqlUsername }}"
DB_PORT: "5432"
CSRF_TRUSTED_ORIGINS: ""
DB_PASSWORD:
secretKeyRef:
name: dbcreds
key: postgresql-password
DB_HOST:
secretKeyRef:
name: dbcreds
key: plainhost
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 10069
targetPort: 8000
persistence:
config:
enabled: true
mountPath: "/config"
varrun:
enabled: true
postgresql:
enabled: true
existingSecret: "dbcreds"
postgresqlUsername: babybuddy
postgresqlDatabase: babybuddy
portal:
enabled: true