fix(harbor): add secret key names for database and redis passwords

Harbor Helm chart requires both existingSecret and existingSecretKey
parameters to properly reference credentials. Without the key names,
the chart creates secrets with empty passwords, causing authentication
failures between components.

Added:
- database.internal.existingSecretKey: DATABASE_PASSWORD
- redis.internal.existingSecretKey: REDIS_PASSWORD
This commit is contained in:
Hermes Agent service account
2026-06-04 20:36:12 -05:00
parent 0ad5dbe741
commit ac8e7acbd4

View File

@@ -39,6 +39,7 @@ database:
# Password from ExternalSecret # Password from ExternalSecret
password: "" password: ""
existingSecret: "harbor-credentials" existingSecret: "harbor-credentials"
existingSecretKey: "DATABASE_PASSWORD"
resources: resources:
requests: requests:
memory: 1Gi memory: 1Gi
@@ -62,6 +63,7 @@ redis:
# Password from ExternalSecret # Password from ExternalSecret
jobservicePassword: "" jobservicePassword: ""
existingSecret: "harbor-credentials" existingSecret: "harbor-credentials"
existingSecretKey: "REDIS_PASSWORD"
resources: resources:
requests: requests:
memory: 256Mi memory: 256Mi