* chore(apps): Sync questions and values env's * chore(apps): sync questions and values env's * chore(apps): sync questions and values env's * chore(apps): sync questions and values env's * chore(apps): sync questions and values env's * chore(apps): sync questions and values env's * chore(apps): sync questions and values env's * remove disabled ingress from values * remove required: false from questions * whoops * some cleanup * more cleanup * clean * commented * some fixes
43 lines
870 B
YAML
43 lines
870 B
YAML
image:
|
|
repository: tccr.io/truecharts/docs
|
|
tag: v1.10@sha256:da049548cc6e261fb09530de30b8856a5f45ec9be654fa8aba4b3dd4f6d091d7
|
|
pullPolicy: IfNotPresent
|
|
|
|
secretEnv:
|
|
DOCS_ADMIN_EMAIL_INIT: ""
|
|
DOCS_ADMIN_PASSWORD_INIT: ""
|
|
DOCS_SMTP_USERNAME: ""
|
|
DOCS_SMTP_PASSWORD: ""
|
|
env:
|
|
DOCS_DEFAULT_LANGUAGE: "eng"
|
|
DOCS_BASE_URL: ""
|
|
DOCS_SMTP_HOSTNAME: ""
|
|
DOCS_SMTP_PORT: 0
|
|
DATABASE_USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
|
DATABASE_PASSWORD:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: postgresql-password
|
|
DATABASE_URL:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: jdbc
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10100
|
|
targetPort: 8080
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/data"
|
|
|
|
postgresql:
|
|
enabled: true
|
|
existingSecret: "dbcreds"
|
|
postgresqlUsername: teedyuser
|
|
postgresqlDatabase: teedydb
|