From d561ac6e04bbaa32258acdb5aec7ed726d5d7cc8 Mon Sep 17 00:00:00 2001 From: Hermes Agent service account Date: Thu, 4 Jun 2026 21:08:27 -0500 Subject: [PATCH] fix: Remove invalid configureUserSettings from harbor-core The configureUserSettings field contained nginx configuration ('http2_push_preload on;') which was incorrectly being used as CONFIG_OVERWRITE_JSON. This caused harbor-core to crash with a JSON parse error. CONFIG_OVERWRITE_JSON expects valid JSON for Harbor configuration overrides, not nginx snippets. Removing this field to fix the CrashLoopBackOff. --- cluster/platform/harbor/values.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/cluster/platform/harbor/values.yaml b/cluster/platform/harbor/values.yaml index 2b576ae..9399f2f 100644 --- a/cluster/platform/harbor/values.yaml +++ b/cluster/platform/harbor/values.yaml @@ -125,9 +125,6 @@ core: tag: "v2.15.1" replicas: 1 # Core secret auto-generated by Harbor Helm chart - # Enable HTTP/2 for better performance - configureUserSettings: |- - http2_push_preload on; resources: requests: memory: 512Mi