fix(paperless-ng): fix redis URL and use default paths (#1560)
* fix(paperless-ng): fix redis URL and use default paths * remove `redisDatabase` as its the default on common * default to pvc and let users change to hostpath if they want * paperless likes the `default` user only * bump patch * Update charts/stable/paperless-ng/values.yaml * Update charts/stable/paperless-ng/values.yaml * Update charts/stable/paperless-ng/values.yaml * Update charts/stable/paperless-ng/values.yaml * Update charts/stable/paperless-ng/values.yaml * Update charts/stable/paperless-ng/values.yaml * Update charts/stable/paperless-ng/values.yaml * Update charts/stable/paperless-ng/questions.yaml * Update charts/stable/paperless-ng/questions.yaml * Update charts/stable/paperless-ng/values.yaml * Update charts/stable/paperless-ng/values.yaml * Update charts/stable/paperless-ng/values.yaml * rename to `data` Co-authored-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
This commit is contained in:
co-authored by
Kjeld Schouten-Lebbing
parent
2957edc828
commit
0710b35a3b
@@ -18,12 +18,12 @@ secret:
|
||||
|
||||
env:
|
||||
PUID: 568
|
||||
PAPERLESS_DATA_DIR: "/config/"
|
||||
PAPERLESS_DATA_DIR: "/data/"
|
||||
PAPERLESS_STATICDIR: "/static/"
|
||||
PAPERLESS_CONSUMPTION_DIR: "/consume/"
|
||||
PAPERLESS_MEDIA_ROOT: "/media/"
|
||||
USERMAP_UID: "{{ .Values.env.PUID }}"
|
||||
USERMAP_GID: "{{ .Values.env.PGID }}"
|
||||
USERMAP_GID: "{{ .Values.podSecurityContext.fsGroup }}"
|
||||
PAPERLESS_TIME_ZONE: "{{ .Values.env.TZ }}"
|
||||
PAPERLESS_DBNAME: "{{ .Values.postgresql.postgresqlDatabase }}"
|
||||
PAPERLESS_DBUSER: "{{ .Values.postgresql.postgresqlUsername }}"
|
||||
@@ -55,9 +55,9 @@ service:
|
||||
port: 10140
|
||||
|
||||
persistence:
|
||||
config:
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
mountPath: "/data"
|
||||
consume:
|
||||
enabled: true
|
||||
mountPath: "/consume"
|
||||
@@ -71,7 +71,7 @@ persistence:
|
||||
redis:
|
||||
enabled: true
|
||||
existingSecret: "rediscreds"
|
||||
redisUsername: paperless-ng
|
||||
redisUsername: default
|
||||
|
||||
postgresql:
|
||||
enabled: true
|
||||
|
||||
Reference in New Issue
Block a user