From a86e87050b7cdb0c36f49d9c96fcd73e24882489 Mon Sep 17 00:00:00 2001 From: Andrew Stoltz Date: Thu, 23 Apr 2026 09:29:32 -0500 Subject: [PATCH] fix(fc-llm-bridge): anthropic secret key is 'password' not 'credential' The 1Password item "Claude API Key" stores the key in a standard Password field (labeled `password`), so the OnePasswordItem operator creates the K8s Secret with key `password`. Deployment was referencing `credential`, which made the pod fail with CreateContainerConfigError. Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/fc-llm-bridge/fc-llm-bridge.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/fc-llm-bridge/fc-llm-bridge.yaml b/apps/fc-llm-bridge/fc-llm-bridge.yaml index 8c069ee..f01924f 100644 --- a/apps/fc-llm-bridge/fc-llm-bridge.yaml +++ b/apps/fc-llm-bridge/fc-llm-bridge.yaml @@ -155,7 +155,7 @@ spec: valueFrom: secretKeyRef: name: anthropic-api-key - key: credential + key: password - name: FlowerCore__Chat__Anthropic__OrganizationId valueFrom: secretKeyRef: