[bitnami/harbor]: Fix chart installation (#14065)

See issue: https://github.com/bitnami/charts/issues/14054

Version 16.0.1 of this chart introduced support for Redis sentinal.
This added references to some redis.sentinal.* variables without
providing default values for them in the values.yaml file.
If the user does not supply these values then the chart installation
fails.
This PR provides the defaults matching the default values used in the
bitnami/redis chart so that the error does not happen.

Signed-off-by: Jim Barber <jim.barber@healthengine.com.au>

Signed-off-by: Jim Barber <jim.barber@healthengine.com.au>
This commit is contained in:
jim-barber-he
2022-12-22 12:19:50 +01:00
committed by GitHub
parent 8dc6a5c71a
commit ae8201aa9c
3 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -36,4 +36,4 @@ sources:
- https://github.com/bitnami/containers/tree/main/bitnami/harbor-registry
- https://github.com/bitnami/containers/tree/main/bitnami/harbor-registryctl
- https://goharbor.io/
version: 16.1.1
version: 16.1.2
+3
View File
@@ -1144,6 +1144,9 @@ Additionally, if `persistence.resourcePolicy` is set to `keep`, you should manua
| `redis.auth.password` | Redis&reg; password | `""` |
| `redis.auth.existingSecret` | The name of an existing secret with Redis&reg; credentials | `""` |
| `redis.architecture` | Redis&reg; architecture. Allowed values: `standalone` or `replication` | `standalone` |
| `redis.sentinel.enabled` | Use Redis&reg; Sentinel on Redis&reg; pods. | `false` |
| `redis.sentinel.masterSet` | Master set name | `mymaster` |
| `redis.sentinel.service.ports.sentinel` | Redis&reg; service port for Redis&reg; Sentinel | `26379` |
| `externalRedis.host` | Redis&reg; host | `localhost` |
| `externalRedis.port` | Redis&reg; port number | `6379` |
| `externalRedis.password` | Redis&reg; password | `""` |
+9
View File
@@ -3752,6 +3752,9 @@ externalDatabase:
## @param redis.auth.password Redis&reg; password
## @param redis.auth.existingSecret The name of an existing secret with Redis&reg; credentials
## @param redis.architecture Redis&reg; architecture. Allowed values: `standalone` or `replication`
## @param redis.sentinel.enabled Use Redis&reg; Sentinel on Redis&reg; pods.
## @param redis.sentinel.masterSet Master set name
## @param redis.sentinel.service.ports.sentinel Redis&reg; service port for Redis&reg; Sentinel
##
redis:
enabled: true
@@ -3765,6 +3768,12 @@ redis:
password: ""
existingSecret: ""
architecture: standalone
sentinel:
enabled: false
masterSet: mymaster
service:
ports:
sentinel: 26379
## External Redis&reg; configuration
## All of these values are only used when redis.enabled is set to false