move api secrets from configmap to .env-backed k8s Secret

This commit is contained in:
2026-06-03 10:32:33 -03:00
parent 2dad62f7e7
commit bd34c8c5ce
5 changed files with 35 additions and 19 deletions

View File

@@ -29,6 +29,8 @@ spec:
envFrom:
- configMapRef:
name: nvi-config
- secretRef:
name: nvi-secrets
readinessProbe:
httpGet:
path: /healthz

View File

@@ -12,14 +12,10 @@ data:
NVI_DATASET: "financial"
# LLM. Supported providers: groq, anthropic, openai.
# Secrets (*_API_KEY) live in the Secret built by kustomize from .env.
LLM_PROVIDER: "groq"
GROQ_API_KEY: "REDACTED_GROQ_API_KEY"
GROQ_MODEL: "llama-3.3-70b-versatile"
ANTHROPIC_API_KEY: ""
ANTHROPIC_MODEL: "claude-sonnet-4-6"
# Langfuse (nivii project in the lng cluster).
LANGFUSE_HOST: "http://lng.local.ar"
LANGFUSE_PUBLIC_KEY: "REDACTED_LANGFUSE_PUBLIC_KEY"
LANGFUSE_SECRET_KEY: "REDACTED_LANGFUSE_SECRET_KEY"

View File

@@ -21,3 +21,15 @@ configMapGenerator:
- Caddyfile
options:
disableNameSuffixHash: true
# API key Secret built from .env at the repo root. .env is gitignored; only
# .env.example is committed. The path is relative to this kustomization.yaml
# (ctrl/k8s/base/) — `../../../.env` resolves to the repo root.
# disableNameSuffixHash keeps the Secret name stable so api.yaml's secretRef
# doesn't break on every rebuild.
secretGenerator:
- name: nvi-secrets
envs:
- ../../../.env
options:
disableNameSuffixHash: true