From 7d9b054340bd2b4ba8da3abb7930272c3b185ea0 Mon Sep 17 00:00:00 2001 From: Hermes Agent service account Date: Thu, 4 Jun 2026 20:32:40 -0500 Subject: [PATCH] fix(harbor): correct secret key name for core secret Harbor Helm chart expects 'secret' key not 'CORE_SECRET' for the CORE_SECRET environment variable. This was causing jobservice pod to fail with CreateContainerConfigError. Fixes: harbor-jobservice-757bbf44cc-tvznq error --- cluster/platform/harbor/externalsecret.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cluster/platform/harbor/externalsecret.yaml b/cluster/platform/harbor/externalsecret.yaml index fb1b29e..d450a6f 100644 --- a/cluster/platform/harbor/externalsecret.yaml +++ b/cluster/platform/harbor/externalsecret.yaml @@ -36,7 +36,8 @@ spec: key: the-seas property: redis-password - - secretKey: CORE_SECRET + # Core secret - Harbor Helm chart expects key named 'secret' not 'CORE_SECRET' + - secretKey: secret remoteRef: key: the-seas property: core-secret