image: # -- image repository repository: tccr.io/truecharts/wikijs # -- image tag tag: v2.5.268@sha256:5bf7af3654477090bc96e4a25978fa31af9a889434d11c9df9d5a959e5e31dc3 # -- image pull policy pullPolicy: IfNotPresent securityContext: readOnlyRootFilesystem: false runAsNonRoot: false podSecurityContext: runAsUser: 0 runAsGroup: 0 # -- environment variables. See [image docs](https://docs.linuxserver.io/images/docker-wikijs#environment-variables-e) for more details. # @default -- See below env: # -- Set the container timezone PUID: 568 TZ: UTC DB_TYPE: "postgres" DB_NAME: "{{ .Values.postgresql.postgresqlDatabase }}" DB_USER: "{{ .Values.postgresql.postgresqlUsername }}" DB_PORT: "5432" envValueFrom: DB_PASS: secretKeyRef: name: dbcreds key: postgresql-password DB_HOST: secretKeyRef: name: dbcreds key: plainhost # -- Configures service settings for the chart. # @default -- See values.yaml service: main: ports: main: port: 10045 targetPort: 3000 # Enabled postgres postgresql: enabled: true existingSecret: "dbcreds" postgresqlUsername: wikijs postgresqlDatabase: wikijs