fix(paperless-ngx): workaround of broken redis-subchart
This commit is contained in:
parent
48efb68db6
commit
8fe7ca8bf8
3 changed files with 4 additions and 2 deletions
|
@ -4,7 +4,7 @@ description: A document management system that transforms your physical document
|
||||||
type: application
|
type: application
|
||||||
icon: https://github.com/paperless-ngx/paperless-ngx/raw/main/resources/logo/web/svg/square.svg
|
icon: https://github.com/paperless-ngx/paperless-ngx/raw/main/resources/logo/web/svg/square.svg
|
||||||
home: https://wrenix.eu/docs/helm-charts/paperless-ngx/
|
home: https://wrenix.eu/docs/helm-charts/paperless-ngx/
|
||||||
version: "0.1.2"
|
version: "0.1.3"
|
||||||
# renovate: image=ghcr.io/paperless-ngx/paperless-ngx
|
# renovate: image=ghcr.io/paperless-ngx/paperless-ngx
|
||||||
appVersion: "2.14.7"
|
appVersion: "2.14.7"
|
||||||
keywords:
|
keywords:
|
||||||
|
|
|
@ -7,7 +7,7 @@ description: "A document management system that transforms your physical documen
|
||||||
|
|
||||||
# paperless-ngx
|
# paperless-ngx
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
A document management system that transforms your physical documents into a searchable online archive so you can keep, well, less paper.
|
A document management system that transforms your physical documents into a searchable online archive so you can keep, well, less paper.
|
||||||
|
|
||||||
|
@ -142,6 +142,7 @@ helm uninstall paperless-ngx-release
|
||||||
| redis.auth.existingSecret | string | `""` | name of an existing secret with Redis credentials (instead of auth.password), must be created ahead of time |
|
| redis.auth.existingSecret | string | `""` | name of an existing secret with Redis credentials (instead of auth.password), must be created ahead of time |
|
||||||
| redis.auth.existingSecretPasswordKey | string | `""` | Password key to be retrieved from existing secret |
|
| redis.auth.existingSecretPasswordKey | string | `""` | Password key to be retrieved from existing secret |
|
||||||
| redis.auth.password | string | `"changeme"` | |
|
| redis.auth.password | string | `"changeme"` | |
|
||||||
|
| redis.auth.usePasswordFiles | bool | `false` | |
|
||||||
| redis.enabled | bool | `true` | |
|
| redis.enabled | bool | `true` | |
|
||||||
| redis.global.storageClass | string | `""` | |
|
| redis.global.storageClass | string | `""` | |
|
||||||
| redis.master.persistence.enabled | bool | `true` | |
|
| redis.master.persistence.enabled | bool | `true` | |
|
||||||
|
|
|
@ -242,6 +242,7 @@ redis:
|
||||||
auth:
|
auth:
|
||||||
enabled: true
|
enabled: true
|
||||||
password: 'changeme'
|
password: 'changeme'
|
||||||
|
usePasswordFiles: false
|
||||||
# -- name of an existing secret with Redis credentials (instead of auth.password), must be created ahead of time
|
# -- name of an existing secret with Redis credentials (instead of auth.password), must be created ahead of time
|
||||||
existingSecret: ""
|
existingSecret: ""
|
||||||
# -- Password key to be retrieved from existing secret
|
# -- Password key to be retrieved from existing secret
|
||||||
|
|
Loading…
Add table
Reference in a new issue