You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Redis Auth password is set in a configmap instead of a Secret.
# values.yaml
redis:
type: external
external:
addr: "harbor-ha-redis-node-0.harbor-ha-redis-headless.harbor.svc.cluster.local:6379..."
sentinelMasterSet: "mymaster"
username: ""
password: "<password_redacted>"
# If using existingSecret, the key must be REDIS_PASSWORD
#existingSecret: "test"
the redis.external.existingSecret param doesn't actually pull the value from the K8s secret, instead it does a helm lookup function and ends up storing the password as part of the connection string in the harbor configmap. This causes problems when trying to deploy via argocd as argocd doesn't support helm lookup.
Redis Auth password is set in a configmap instead of a Secret.
the
redis.external.existingSecret
param doesn't actually pull the value from the K8s secret, instead it does a helmlookup
function and ends up storing the password as part of the connection string in the harbor configmap. This causes problems when trying to deploy via argocd as argocd doesn't support helmlookup
.The text was updated successfully, but these errors were encountered: