Files
truecharts/charts/stable/onlyoffice-document-server/values.yaml
TrueCharts Bot 266d9ce299 chore(deps): update container image tccr.io/truecharts/onlyoffice-ds to v7.3.0 (#6948)
* chore(deps): update container image tccr.io/truecharts/onlyoffice-ds to v7.3.0

* Commit bumped Chart Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

---------

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2023-02-03 15:22:17 +02:00

71 lines
1.3 KiB
YAML

image:
repository: tccr.io/truecharts/onlyoffice-ds
tag: 7.3.0@sha256:ffedf651e796cc1a2bc2e52746ee35130e2b91814efcbbf28832cbaf9321fe3c
pullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
secretEnv:
JWT_SECRET: "randomgeneratedstring"
env:
WOPI_ENABLED: true
JWT_ENABLED: true
DB_TYPE: "postgres"
DB_PORT: 5432
DB_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
DB_USER: "{{ .Values.postgresql.postgresqlUsername }}"
REDIS_SERVER_PORT: 6379
DB_HOST:
secretKeyRef:
name: dbcreds
key: plainhost
DB_PWD:
secretKeyRef:
name: dbcreds
key: postgresql-password
REDIS_SERVER_HOST:
secretKeyRef:
name: rediscreds
key: plainhost
REDIS_SERVER_PASS:
secretKeyRef:
name: rediscreds
key: redis-password
probes:
liveness:
path: "/healthcheck"
readiness:
path: "/healthcheck"
startup:
path: "/healthcheck"
service:
main:
ports:
main:
port: 10043
targetPort: 80
# Enabled postgres
postgresql:
enabled: true
existingSecret: "dbcreds"
postgresqlUsername: onlyoffice
postgresqlDatabase: onlyoffice
# Enabled redis
redis:
enabled: true
existingSecret: "rediscreds"
portal:
enabled: true