fix(paperless-ngx): workaround of broken redis-subchart

This commit is contained in:
WrenIX 2025-03-02 22:42:27 +01:00
parent 48efb68db6
commit 8fe7ca8bf8
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
3 changed files with 4 additions and 2 deletions

View file

@ -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:

View file

@ -7,7 +7,7 @@ description: "A document management system that transforms your physical documen
# paperless-ngx # paperless-ngx
![Version: 0.1.2](https://img.shields.io/badge/Version-0.1.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.14.7](https://img.shields.io/badge/AppVersion-2.14.7-informational?style=flat-square) ![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.14.7](https://img.shields.io/badge/AppVersion-2.14.7-informational?style=flat-square)
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` | |

View file

@ -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