feat(researchowl): add ANTHROPIC_API_KEY, fix OLLAMA_URL, remove Secret template

- Add ANTHROPIC_API_KEY from secret for Claude Haiku relevance scoring
- Fix OLLAMA_URL to internal k8s DNS (ollama.ollama.svc.cluster.local)
- Remove Secret resource (was causing ArgoCD to overwrite with REPLACE_ME)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-29 08:07:41 +00:00
parent 1825916b23
commit 46bc4d0b28
+12
View File
@@ -62,6 +62,11 @@ spec:
value: "3" value: "3"
- name: QUALITY_THRESHOLD - name: QUALITY_THRESHOLD
value: "0.4" value: "0.4"
- name: ANTHROPIC_API_KEY
valueFrom:
secretKeyRef:
name: researchowl-secrets
key: anthropic-api-key
volumeMounts: volumeMounts:
- name: data - name: data
mountPath: /data mountPath: /data
@@ -78,3 +83,10 @@ spec:
claimName: researchowl-data claimName: researchowl-data
imagePullSecrets: imagePullSecrets:
- name: gitea-registry - name: gitea-registry
# Secret is managed imperatively (not by ArgoCD) to avoid overwriting real values:
# kubectl create secret generic researchowl-secrets \
# --from-literal=telegram-bot-token=YOUR_TOKEN \
# --from-literal=telegram-allowed-users=YOUR_USER_ID \
# --from-literal=anthropic-api-key=YOUR_KEY \
# -n researchowl