catalog/stable/wikijs/7.0.37/ix_values.yaml

51 lines
1.0 KiB
YAML

image:
repository: tccr.io/truecharts/wikijs
tag: 2.5.287@sha256:ae80112a94eb26ad20a8d3974e28d62a2c90fa39b621c36c603b88ad1d151f2b
pullPolicy: IfNotPresent
env:
DB_TYPE: "postgres"
DB_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
DB_USER: "{{ .Values.postgresql.postgresqlUsername }}"
DB_PORT: "5432"
DB_PASS:
secretKeyRef:
name: dbcreds
key: postgresql-password
DB_HOST:
secretKeyRef:
name: dbcreds
key: plainhost
probes:
liveness:
path: "/healthz"
readiness:
path: "/healthz"
startup:
path: "/healthz"
service:
main:
ports:
main:
port: 10045
targetPort: 3000
postgresql:
enabled: true
existingSecret: "dbcreds"
postgresqlUsername: wikijs
postgresqlDatabase: wikijs
# /wiki/data is a temporary dir. Without mounting as emptyDir it's only writable by root.
# https://docs.requarks.io/en/install/config#data-paths
persistence:
wikicache:
enabled: true
mountPath: "/wiki/data/"
type: emptyDir
portal:
enabled: true