From 3a8db0317a5474b2ee017d693bc95489d0ebf6ae Mon Sep 17 00:00:00 2001 From: Vaibhav Pathak Date: Thu, 21 May 2026 16:13:18 +0530 Subject: [PATCH] fix: restore Basic prefix on Gitea Authorization header GITEA_AUTH_HEADER in GCP Secret Manager is the raw base64 credential, not the full header value. The 'Basic ' prefix is required. Co-Authored-By: Claude Sonnet 4.6 --- templates/backstage-configmap.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/backstage-configmap.yaml b/templates/backstage-configmap.yaml index dc47af7..28d4873 100644 --- a/templates/backstage-configmap.yaml +++ b/templates/backstage-configmap.yaml @@ -108,7 +108,7 @@ data: changeOrigin: true secure: false headers: - Authorization: ${GITEA_AUTH_HEADER} + Authorization: 'Basic ${GITEA_AUTH_HEADER}' '/github/api': target: 'https://api.github.com'