Bug/discourse remove redis username (#14265)

* [14264] Using external redis authentication with username is not implemented

Signed-off-by: ausias-armesto <ausiasarmesto@gmail.com>

* [14264] - Using external redis authentication with username is not implemented

Signed-off-by: ausias-armesto <ausiasarmesto@gmail.com>

* [14264] - Using external redis authentication with username is not implemented

Signed-off-by: ausias-armesto <ausiasarmesto@gmail.com>

Signed-off-by: ausias-armesto <ausiasarmesto@gmail.com>
This commit is contained in:
ausias-armesto
2023-01-12 10:08:12 +01:00
committed by GitHub
parent 13dc244a8a
commit e5c2e8c28b
3 changed files with 1 additions and 6 deletions

View File

@@ -36,4 +36,4 @@ sources:
- https://github.com/bitnami/containers/tree/main/bitnami/discourse
- https://github.com/spinnaker
- https://www.discourse.org/
version: 9.0.6
version: 9.0.7

View File

@@ -329,7 +329,6 @@ The command removes all the Kubernetes components associated with the chart and
| `redis.architecture` | Redis&reg; architecture. Allowed values: `standalone` or `replication` | `standalone` |
| `externalRedis.host` | Redis&reg; host | `localhost` |
| `externalRedis.port` | Redis&reg; port number | `6379` |
| `externalRedis.username` | Redis&reg; username | `""` |
| `externalRedis.password` | Redis&reg; password | `""` |
| `externalRedis.existingSecret` | Name of an existing secret resource containing the Redis&trade credentials | `""` |
| `externalRedis.existingSecretPasswordKey` | Name of an existing secret key containing the Redis&trade credentials | `redis-password` |

View File

@@ -865,7 +865,6 @@ redis:
## All of these values are only used when redis.enabled is set to false
## @param externalRedis.host Redis&reg; host
## @param externalRedis.port Redis&reg; port number
## @param externalRedis.username Redis&reg; username
## @param externalRedis.password Redis&reg; password
## @param externalRedis.existingSecret Name of an existing secret resource containing the Redis&trade credentials
## @param externalRedis.existingSecretPasswordKey Name of an existing secret key containing the Redis&trade credentials
@@ -873,9 +872,6 @@ redis:
externalRedis:
host: localhost
port: 6379
## Most Redis&reg; implementations do not require a username
## to authenticate and it should be enough with the password
username: ""
password: ""
existingSecret: ""
existingSecretPasswordKey: "redis-password"