From ac8e7acbd4c87ad4d13a28a00dcfe77f6f544f0f Mon Sep 17 00:00:00 2001 From: Hermes Agent service account Date: Thu, 4 Jun 2026 20:36:12 -0500 Subject: [PATCH] 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 --- cluster/platform/harbor/values.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cluster/platform/harbor/values.yaml b/cluster/platform/harbor/values.yaml index 5b5f258..24703d1 100644 --- a/cluster/platform/harbor/values.yaml +++ b/cluster/platform/harbor/values.yaml @@ -39,6 +39,7 @@ database: # Password from ExternalSecret password: "" existingSecret: "harbor-credentials" + existingSecretKey: "DATABASE_PASSWORD" resources: requests: memory: 1Gi @@ -62,6 +63,7 @@ redis: # Password from ExternalSecret jobservicePassword: "" existingSecret: "harbor-credentials" + existingSecretKey: "REDIS_PASSWORD" resources: requests: memory: 256Mi