64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
|
image:
|
||
|
# -- image repository
|
||
|
repository: tccr.io/truecharts/mealie
|
||
|
# -- image tag
|
||
|
tag: v0.5.4@sha256:52a05feaf3cac813c0540e8c59b0f99900662558254c657e9d0335f0d9c8b4a9
|
||
|
# -- image pull policy
|
||
|
pullPolicy: IfNotPresent
|
||
|
|
||
|
securityContext:
|
||
|
readOnlyRootFilesystem: false
|
||
|
runAsNonRoot: false
|
||
|
|
||
|
podSecurityContext:
|
||
|
runAsUser: 0
|
||
|
runAsGroup: 0
|
||
|
|
||
|
# -- environment variables. See [image docs](https://hay-kot.github.io/mealie/getting-started/install/#env-variables) for more details.
|
||
|
# @default -- See below
|
||
|
env:
|
||
|
# -- Set the container timezone
|
||
|
TZ: UTC
|
||
|
|
||
|
envTpl:
|
||
|
DB_TYPE: postgres
|
||
|
POSTGRES_DB: "{{ .Values.postgresql.postgresqlDatabase }}"
|
||
|
POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
||
|
|
||
|
envValueFrom:
|
||
|
POSTGRES_PASSWORD:
|
||
|
secretKeyRef:
|
||
|
name: dbcreds
|
||
|
key: postgresql-password
|
||
|
POSTGRES_SERVER:
|
||
|
secretKeyRef:
|
||
|
name: dbcreds
|
||
|
key: plainporthost
|
||
|
|
||
|
postgresql:
|
||
|
enabled: true
|
||
|
existingSecret: "dbcreds"
|
||
|
postgresqlUsername: mealie
|
||
|
postgresqlDatabase: mealie
|
||
|
# -- Configures service settings for the chart.
|
||
|
# @default -- See values.yaml
|
||
|
service:
|
||
|
main:
|
||
|
ports:
|
||
|
main:
|
||
|
port: 10018
|
||
|
targetPort: 80
|
||
|
|
||
|
ingress:
|
||
|
# -- Enable and configure ingress settings for the chart under this key.
|
||
|
# @default -- See values.yaml
|
||
|
main:
|
||
|
enabled: false
|
||
|
|
||
|
# -- Configure persistence settings for the chart under this key.
|
||
|
# @default -- See values.yaml
|
||
|
persistence:
|
||
|
config:
|
||
|
enabled: true
|
||
|
mountPath: "/app/data/"
|