TrueChartsClone/charts/stable/bookstack/values.yaml

50 lines
952 B
YAML
Raw Normal View History

image:
repository: tccr.io/truecharts/bookstack
pullPolicy: IfNotPresent
tag: 22.07.20220728@sha256:e323c1d90d22572d49f20cd297bb27be698c2e7fc197d9e237c9e32f52ca030b
env:
DB_USER: "{{ .Values.mariadb.mariadbUsername }}"
DB_DATABASE: "{{ .Values.mariadb.mariadbDatabase }}"
APP_URL: ""
DB_HOST:
secretKeyRef:
name: mariadbcreds
key: plainhost
DB_PASS:
secretKeyRef:
name: mariadbcreds
key: mariadb-password
APP_KEY:
secretKeyRef:
name: bookstack-secrets
key: APP_KEY
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 10112
targetPort: 80
persistence:
varrun:
enabled: true
config:
enabled: true
mountPath: "/config"
mariadb:
enabled: true
mariadbUsername: bookstack
mariadbDatabase: bookstack
existingSecret: "mariadbcreds"