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
@@ -205,8 +205,8 @@ questions:
|
|||||||
schema:
|
schema:
|
||||||
type: dict
|
type: dict
|
||||||
attrs:
|
attrs:
|
||||||
- variable: config
|
- variable: data
|
||||||
label: "App Config Storage"
|
label: "App Data Storage"
|
||||||
description: "This is where paperless stores all its data (search index, classification model, etc)"
|
description: "This is where paperless stores all its data (search index, classification model, etc)"
|
||||||
schema:
|
schema:
|
||||||
type: dict
|
type: dict
|
||||||
@@ -290,7 +290,7 @@ questions:
|
|||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# Include{persistenceAdvanced}
|
||||||
- variable: consume
|
- variable: consume
|
||||||
label: "App Data Storage"
|
label: "To-be consumed Document Storage"
|
||||||
description: "This where your documents should go to be consumed."
|
description: "This where your documents should go to be consumed."
|
||||||
schema:
|
schema:
|
||||||
type: dict
|
type: dict
|
||||||
@@ -300,7 +300,7 @@ questions:
|
|||||||
description: "Sets the persistence type, Anything other than PVC could break rollback!"
|
description: "Sets the persistence type, Anything other than PVC could break rollback!"
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
default: "simpleHP"
|
default: "simplePVC"
|
||||||
enum:
|
enum:
|
||||||
- value: "simplePVC"
|
- value: "simplePVC"
|
||||||
description: "PVC (simple)"
|
description: "PVC (simple)"
|
||||||
@@ -332,7 +332,7 @@ questions:
|
|||||||
description: "Memory"
|
description: "Memory"
|
||||||
# Include{persistenceAdvanced}
|
# Include{persistenceAdvanced}
|
||||||
- variable: media
|
- variable: media
|
||||||
label: "App Media Storage"
|
label: "App Document Storage"
|
||||||
description: "This is where your documents and thumbnails are stored."
|
description: "This is where your documents and thumbnails are stored."
|
||||||
schema:
|
schema:
|
||||||
type: dict
|
type: dict
|
||||||
@@ -342,7 +342,7 @@ questions:
|
|||||||
description: "Sets the persistence type, Anything other than PVC could break rollback!"
|
description: "Sets the persistence type, Anything other than PVC could break rollback!"
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
default: "simpleHP"
|
default: "simplePVC"
|
||||||
enum:
|
enum:
|
||||||
- value: "simplePVC"
|
- value: "simplePVC"
|
||||||
description: "PVC (simple)"
|
description: "PVC (simple)"
|
||||||
|
|||||||
@@ -18,12 +18,12 @@ secret:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
PUID: 568
|
PUID: 568
|
||||||
PAPERLESS_DATA_DIR: "/config/"
|
PAPERLESS_DATA_DIR: "/data/"
|
||||||
PAPERLESS_STATICDIR: "/static/"
|
PAPERLESS_STATICDIR: "/static/"
|
||||||
PAPERLESS_CONSUMPTION_DIR: "/consume/"
|
PAPERLESS_CONSUMPTION_DIR: "/consume/"
|
||||||
PAPERLESS_MEDIA_ROOT: "/media/"
|
PAPERLESS_MEDIA_ROOT: "/media/"
|
||||||
USERMAP_UID: "{{ .Values.env.PUID }}"
|
USERMAP_UID: "{{ .Values.env.PUID }}"
|
||||||
USERMAP_GID: "{{ .Values.env.PGID }}"
|
USERMAP_GID: "{{ .Values.podSecurityContext.fsGroup }}"
|
||||||
PAPERLESS_TIME_ZONE: "{{ .Values.env.TZ }}"
|
PAPERLESS_TIME_ZONE: "{{ .Values.env.TZ }}"
|
||||||
PAPERLESS_DBNAME: "{{ .Values.postgresql.postgresqlDatabase }}"
|
PAPERLESS_DBNAME: "{{ .Values.postgresql.postgresqlDatabase }}"
|
||||||
PAPERLESS_DBUSER: "{{ .Values.postgresql.postgresqlUsername }}"
|
PAPERLESS_DBUSER: "{{ .Values.postgresql.postgresqlUsername }}"
|
||||||
@@ -55,9 +55,9 @@ service:
|
|||||||
port: 10140
|
port: 10140
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
data:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/config"
|
mountPath: "/data"
|
||||||
consume:
|
consume:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: "/consume"
|
mountPath: "/consume"
|
||||||
@@ -71,7 +71,7 @@ persistence:
|
|||||||
redis:
|
redis:
|
||||||
enabled: true
|
enabled: true
|
||||||
existingSecret: "rediscreds"
|
existingSecret: "rediscreds"
|
||||||
redisUsername: paperless-ng
|
redisUsername: default
|
||||||
|
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|||||||
Reference in New Issue
Block a user