mirror of
https://github.com/wahyd4/charts.git
synced 2026-08-08 21:01:43 +10:00
[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:
@@ -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
|
||||
|
||||
@@ -1144,6 +1144,9 @@ Additionally, if `persistence.resourcePolicy` is set to `keep`, you should manua
|
||||
| `redis.auth.password` | Redis® password | `""` |
|
||||
| `redis.auth.existingSecret` | The name of an existing secret with Redis® credentials | `""` |
|
||||
| `redis.architecture` | Redis® architecture. Allowed values: `standalone` or `replication` | `standalone` |
|
||||
| `redis.sentinel.enabled` | Use Redis® Sentinel on Redis® pods. | `false` |
|
||||
| `redis.sentinel.masterSet` | Master set name | `mymaster` |
|
||||
| `redis.sentinel.service.ports.sentinel` | Redis® service port for Redis® Sentinel | `26379` |
|
||||
| `externalRedis.host` | Redis® host | `localhost` |
|
||||
| `externalRedis.port` | Redis® port number | `6379` |
|
||||
| `externalRedis.password` | Redis® password | `""` |
|
||||
|
||||
@@ -3752,6 +3752,9 @@ externalDatabase:
|
||||
## @param redis.auth.password Redis® password
|
||||
## @param redis.auth.existingSecret The name of an existing secret with Redis® credentials
|
||||
## @param redis.architecture Redis® architecture. Allowed values: `standalone` or `replication`
|
||||
## @param redis.sentinel.enabled Use Redis® Sentinel on Redis® pods.
|
||||
## @param redis.sentinel.masterSet Master set name
|
||||
## @param redis.sentinel.service.ports.sentinel Redis® service port for Redis® Sentinel
|
||||
##
|
||||
redis:
|
||||
enabled: true
|
||||
@@ -3765,6 +3768,12 @@ redis:
|
||||
password: ""
|
||||
existingSecret: ""
|
||||
architecture: standalone
|
||||
sentinel:
|
||||
enabled: false
|
||||
masterSet: mymaster
|
||||
service:
|
||||
ports:
|
||||
sentinel: 26379
|
||||
|
||||
## External Redis® configuration
|
||||
## All of these values are only used when redis.enabled is set to false
|
||||
|
||||
Reference in New Issue
Block a user