Fix Open WebUI auth: correct WEBUI_SECRET_KEY and remove Ollama config

- WEBUI_SECRET_KEY now uses dedicated webui-secret-key (not vllm-api-key)
- ExternalSecret updated to fetch webui_secret_key from 1Password
- Remove duplicate OLLAMA_BASE_URLS configuration (vLLM only)
This commit is contained in:
Hermes Agent service account
2026-09-01 13:18:55 -05:00
parent d95477fc3b
commit 3dc58cf644
2 changed files with 7 additions and 1 deletions

View File

@@ -37,7 +37,7 @@ spec:
valueFrom:
secretKeyRef:
name: body-wars-secret
key: vllm-api-key
key: webui-secret-key
optional: false
# Backend configuration for vLLM (OpenAI-compatible, NOT Ollama)
# OLLAMA_BASE_URLS removed: astro-orbiter runs vLLM, not Ollama

View File

@@ -18,9 +18,15 @@ spec:
engineVersion: v2
data:
vllm-api-key: "{{ .vllm_api_key }}"
webui-secret-key: "{{ .webui_secret_key }}"
data:
# vLLM API key from 1Password (mk-labs vault, vllm item, api-key field)
- secretKey: vllm_api_key
remoteRef:
key: vllm
property: api-key
# WebUI JWT signing secret from 1Password (mk-labs vault, open-webui item, secret-key field)
- secretKey: webui_secret_key
remoteRef:
key: open-webui
property: secret-key