55 lines
1.0 KiB
YAML
55 lines
1.0 KiB
YAML
image:
|
|
repository: tccr.io/truecharts/blog
|
|
pullPolicy: IfNotPresent
|
|
tag: latest@sha256:9f6d01849c9cee4424a50f9d0e73508ae519c06e0b6ccc8eafc07f085190945b
|
|
|
|
secretEnv:
|
|
BLOG_NICK: username
|
|
BLOG_PASS: password
|
|
|
|
securityContext:
|
|
runAsNonRoot: false
|
|
readOnlyRootFilesystem: false
|
|
|
|
podSecurityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
env:
|
|
BLOG_TITLE: "Blog"
|
|
BLOG_NAME: "Max Musermann"
|
|
BLOG_LANG: "en"
|
|
BLOG_DB_CONNECTION: "postgres"
|
|
BLOG_POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
|
BLOG_POSTGRES_PORT: "5432"
|
|
BLOG_DB_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
|
|
BLOG_POSTGRES_PASS:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: postgresql-password
|
|
BLOG_POSTGRES_HOST:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: plainhost
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10111
|
|
targetPort: 80
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/var/www/html/data"
|
|
|
|
postgresql:
|
|
enabled: true
|
|
existingSecret: "dbcreds"
|
|
postgresqlUsername: blog
|
|
postgresqlDatabase: blog
|
|
|
|
portal:
|
|
enabled: true
|