fix(pretix): workaround of broken redis-subchart
This commit is contained in:
parent
8fe7ca8bf8
commit
0fd2668465
3 changed files with 6 additions and 3 deletions
|
@ -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:
|
||||||
|
|
|
@ -7,7 +7,7 @@ description: "Reinventing ticket presales, one ticket at a time."
|
||||||
|
|
||||||
# pretix
|
# pretix
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
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` | |
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue