TrueChartsClone/charts/stable/paperless-ng/values.yaml

76 lines
1.6 KiB
YAML
Raw Normal View History

image:
repository: tccr.io/truecharts/paperless-ng
pullPolicy: IfNotPresent
tag: v1.5.0@sha256:fb64bc161bc6d7ca90ca6c72131e8de9f5890a995913d4c656400d8ac1feca33
securityContext:
runAsNonRoot: false
readOnlyRootFilesystem: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
secret:
PAPERLESS_ADMIN_USER: "admin"
PAPERLESS_ADMIN_PASSWORD: "admin"
PAPERLESS_ADMIN_MAIL: "admin@admin.com"
env:
PAPERLESS_DATA_DIR: "/data/"
PAPERLESS_CONSUMPTION_DIR: "/consume/"
PAPERLESS_MEDIA_ROOT: "/media/"
USERMAP_UID: "{{ .Values.security.PUID }}"
USERMAP_GID: "{{ .Values.podSecurityContext.fsGroup }}"
PAPERLESS_TIME_ZONE: "{{ .Values.TZ }}"
PAPERLESS_DBNAME: "{{ .Values.postgresql.postgresqlDatabase }}"
PAPERLESS_DBUSER: "{{ .Values.postgresql.postgresqlUsername }}"
PAPERLESS_DBPORT: "5432"
envValueFrom:
PAPERLESS_DBPASS:
secretKeyRef:
name: dbcreds
key: postgresql-password
PAPERLESS_DBHOST:
secretKeyRef:
name: dbcreds
key: plainhost
PAPERLESS_SECRET_KEY:
secretKeyRef:
name: paperlessng-secrets
key: PAPERLESS_SECRET_KEY
PAPERLESS_REDIS:
secretKeyRef:
name: rediscreds
key: url
service:
main:
ports:
main:
targetPort: 8000
port: 10140
persistence:
data:
enabled: true
mountPath: "/data"
consume:
enabled: true
mountPath: "/consume"
media:
enabled: true
mountPath: "/media"
redis:
enabled: true
existingSecret: "rediscreds"
redisUsername: default
postgresql:
enabled: true
existingSecret: "dbcreds"
postgresqlUsername: paperless-ng
postgresqlDatabase: paperless-ng