fix(pretix): workaround of broken redis-subchart

This commit is contained in:
WrenIX 2025-03-02 22:42:31 +01:00
parent 8fe7ca8bf8
commit 0fd2668465
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
3 changed files with 6 additions and 3 deletions

View file

@ -2,7 +2,7 @@ apiVersion: v2
name: pretix name: pretix
description: Reinventing ticket presales, one ticket at a time. description: Reinventing ticket presales, one ticket at a time.
type: application type: application
version: "0.1.11" version: "0.1.12"
# renovate: image=docker.io/pretix/standalone # renovate: image=docker.io/pretix/standalone
appVersion: "2025.2.0" appVersion: "2025.2.0"
keywords: keywords:

View file

@ -7,7 +7,7 @@ description: "Reinventing ticket presales, one ticket at a time."
# pretix # pretix
![Version: 0.1.11](https://img.shields.io/badge/Version-0.1.11-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2025.2.0](https://img.shields.io/badge/AppVersion-2025.2.0-informational?style=flat-square) ![Version: 0.1.12](https://img.shields.io/badge/Version-0.1.12-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2025.2.0](https://img.shields.io/badge/AppVersion-2025.2.0-informational?style=flat-square)
Reinventing ticket presales, one ticket at a time. Reinventing ticket presales, one ticket at a time.
@ -141,6 +141,7 @@ helm uninstall pretix-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` | |
@ -162,7 +163,7 @@ helm uninstall pretix-release
Autogenerated from chart metadata using [helm-docs](https://github.com/norwoodj/helm-docs) Autogenerated from chart metadata using [helm-docs](https://github.com/norwoodj/helm-docs)
# pretix # pretix
![Version: 0.1.11](https://img.shields.io/badge/Version-0.1.11-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2025.2.0](https://img.shields.io/badge/AppVersion-2025.2.0-informational?style=flat-square) ![Version: 0.1.12](https://img.shields.io/badge/Version-0.1.12-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2025.2.0](https://img.shields.io/badge/AppVersion-2025.2.0-informational?style=flat-square)
Reinventing ticket presales, one ticket at a time. Reinventing ticket presales, one ticket at a time.
@ -274,6 +275,7 @@ Reinventing ticket presales, one ticket at a 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.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

@ -229,6 +229,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