fix(autopush): workaround of broken redis-subchart
This commit is contained in:
parent
88af998946
commit
68596fedba
3 changed files with 4 additions and 2 deletions
|
@ -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:
|
||||||
|
|
|
@ -7,7 +7,7 @@ description: "A Helm chart for Kubernetes"
|
||||||
|
|
||||||
# autopush
|
# autopush
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
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"` | |
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue