7cb4367496
* chore(deps): update docker general non-major * Commit bumped App Version Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
46 lines
1.0 KiB
YAML
46 lines
1.0 KiB
YAML
image:
|
|
repository: tccr.io/truecharts/dsmr-reader
|
|
tag: v2021.09.02@sha256:633ee4d77432e70071f8d0fc5bbd2fdb57e55a33bfabc7b254d2d667f711c350
|
|
pullPolicy: IfNotPresent
|
|
|
|
env:
|
|
DJANGO_TIME_ZONE: "{{ .Values.TZ }}"
|
|
DJANGO_DATABASE_ENGINE: "django.db.backends.postgresql"
|
|
DJANGO_DATABASE_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
|
|
DJANGO_DATABASE_USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
|
DJANGO_DATABASE_PORT: "5432"
|
|
DJANGO_DATABASE_PASSWORD:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: postgresql-password
|
|
DJANGO_DATABASE_HOST:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: plainhost
|
|
|
|
securityContext:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
|
|
podSecurityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10009
|
|
targetPort: 80
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: "/config"
|
|
|
|
postgresql:
|
|
enabled: true
|
|
existingSecret: "dbcreds"
|
|
postgresqlUsername: dsmr-reader
|
|
postgresqlDatabase: dsmr-reader
|