fix(autopush): workaround of broken redis-subchart

This commit is contained in:
WrenIX 2025-03-02 22:42:19 +01:00
parent 88af998946
commit 68596fedba
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
3 changed files with 4 additions and 2 deletions

View file

@ -3,7 +3,7 @@ name: autopush
description: A Helm chart for Kubernetes description: A Helm chart for Kubernetes
icon: icon:
type: application type: application
version: "0.0.14" version: "0.0.15"
# renovate: image=docker.io/mozilla-services/autopush-rs # renovate: image=docker.io/mozilla-services/autopush-rs
appVersion: "1.72.2" appVersion: "1.72.2"
maintainers: maintainers:

View file

@ -7,7 +7,7 @@ description: "A Helm chart for Kubernetes"
# autopush # autopush
![Version: 0.0.14](https://img.shields.io/badge/Version-0.0.14-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.72.2](https://img.shields.io/badge/AppVersion-1.72.2-informational?style=flat-square) ![Version: 0.0.15](https://img.shields.io/badge/Version-0.0.15-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.72.2](https://img.shields.io/badge/AppVersion-1.72.2-informational?style=flat-square)
A Helm chart for Kubernetes A Helm chart for Kubernetes
@ -174,6 +174,7 @@ helm uninstall autopush-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 | `"autopush"` | XXX Change me! | | redis.auth.password | string | `"autopush"` | XXX Change me! |
| redis.auth.usePasswordFiles | bool | `false` | |
| redis.dbid | int | `0` | Database ID for non-default database | | redis.dbid | int | `0` | Database ID for non-default database |
| redis.external.existingSecretPasswordKey | string | `"redis-password"` | Password key to be retrieved from existing secret | | redis.external.existingSecretPasswordKey | string | `"redis-password"` | Password key to be retrieved from existing secret |
| redis.external.host | string | `"redis"` | | | redis.external.host | string | `"redis"` | |

View file

@ -99,6 +99,7 @@ redis:
enabled: true enabled: true
# -- XXX Change me! # -- XXX Change me!
password: autopush password: autopush
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