2021-11-30 13:33:15 +00:00
|
|
|
image:
|
2021-12-03 12:02:44 +00:00
|
|
|
repository: tccr.io/truecharts/blog
|
2021-11-30 13:33:15 +00:00
|
|
|
pullPolicy: IfNotPresent
|
2022-01-10 17:55:19 +00:00
|
|
|
tag: latest@sha256:1b266160b63af34d10b2e78457ca77bbcd0bc7eba08b58d21f7e4bfe8ce2f208
|
2021-11-30 13:33:15 +00:00
|
|
|
|
|
|
|
secret:
|
|
|
|
BLOG_NICK: username
|
|
|
|
BLOG_PASS: password
|
|
|
|
|
|
|
|
securityContext:
|
|
|
|
runAsNonRoot: false
|
|
|
|
readOnlyRootFilesystem: false
|
|
|
|
|
|
|
|
podSecurityContext:
|
|
|
|
runAsUser: 0
|
|
|
|
runAsGroup: 0
|
|
|
|
|
|
|
|
# See more environment variables in the blog documentation
|
|
|
|
# https://github.com/nicholaswilde/docker-blog
|
|
|
|
env:
|
|
|
|
BLOG_TITLE: Blog
|
|
|
|
BLOG_NAME: Max Musermann
|
|
|
|
BLOG_LANG: en
|
|
|
|
BLOG_DB_CONNECTION: postgres
|
|
|
|
BLOG_POSTGRES_USER: blog
|
|
|
|
BLOG_POSTGRES_PORT: 5432
|
|
|
|
BLOG_DB_NAME: blog
|
|
|
|
|
|
|
|
service:
|
|
|
|
main:
|
|
|
|
ports:
|
|
|
|
main:
|
|
|
|
port: 10111
|
|
|
|
targetPort: 80
|
|
|
|
|
|
|
|
persistence:
|
|
|
|
data:
|
|
|
|
enabled: true
|
2021-12-18 19:25:00 +00:00
|
|
|
mountPath: "/var/www/html/data"
|
2021-11-30 13:33:15 +00:00
|
|
|
|
|
|
|
envValueFrom:
|
|
|
|
BLOG_POSTGRES_PASS:
|
|
|
|
secretKeyRef:
|
|
|
|
name: dbcreds
|
|
|
|
key: postgresql-password
|
|
|
|
BLOG_POSTGRES_HOST:
|
|
|
|
secretKeyRef:
|
|
|
|
name: dbcreds
|
|
|
|
key: plainhost
|
|
|
|
|
|
|
|
# Enabled postgres
|
|
|
|
postgresql:
|
|
|
|
enabled: true
|
|
|
|
existingSecret: "dbcreds"
|
|
|
|
postgresqlUsername: blog
|
|
|
|
postgresqlDatabase: blog
|