From e5c2e8c28b3dbfbd006feaec605c3ee18997ec57 Mon Sep 17 00:00:00 2001 From: ausias-armesto Date: Thu, 12 Jan 2023 10:08:12 +0100 Subject: [PATCH] Bug/discourse remove redis username (#14265) * [14264] Using external redis authentication with username is not implemented Signed-off-by: ausias-armesto * [14264] - Using external redis authentication with username is not implemented Signed-off-by: ausias-armesto * [14264] - Using external redis authentication with username is not implemented Signed-off-by: ausias-armesto Signed-off-by: ausias-armesto --- bitnami/discourse/Chart.yaml | 2 +- bitnami/discourse/README.md | 1 - bitnami/discourse/values.yaml | 4 ---- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/bitnami/discourse/Chart.yaml b/bitnami/discourse/Chart.yaml index b560f24b90..cf81af51ad 100644 --- a/bitnami/discourse/Chart.yaml +++ b/bitnami/discourse/Chart.yaml @@ -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 diff --git a/bitnami/discourse/README.md b/bitnami/discourse/README.md index 1f844913f2..0cbab0e745 100644 --- a/bitnami/discourse/README.md +++ b/bitnami/discourse/README.md @@ -329,7 +329,6 @@ The command removes all the Kubernetes components associated with the chart and | `redis.architecture` | Redis® architecture. Allowed values: `standalone` or `replication` | `standalone` | | `externalRedis.host` | Redis® host | `localhost` | | `externalRedis.port` | Redis® port number | `6379` | -| `externalRedis.username` | Redis® username | `""` | | `externalRedis.password` | Redis® 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` | diff --git a/bitnami/discourse/values.yaml b/bitnami/discourse/values.yaml index 01a4142b11..3a10adddb9 100644 --- a/bitnami/discourse/values.yaml +++ b/bitnami/discourse/values.yaml @@ -865,7 +865,6 @@ redis: ## All of these values are only used when redis.enabled is set to false ## @param externalRedis.host Redis® host ## @param externalRedis.port Redis® port number -## @param externalRedis.username Redis® username ## @param externalRedis.password Redis® 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® implementations do not require a username - ## to authenticate and it should be enough with the password - username: "" password: "" existingSecret: "" existingSecretPasswordKey: "redis-password"