2026-08-12 12:46:58 -07:00
|
|
|
# Copy to secret.yaml (gitignored), set real values, and apply once:
|
|
|
|
|
# kubectl apply -f secret.yaml
|
|
|
|
|
# user-email / user-password are the login tududi creates on first start.
|
|
|
|
|
# session-secret signs session cookies -- generate with:
|
|
|
|
|
# openssl rand -hex 64
|
|
|
|
|
apiVersion: v1
|
|
|
|
|
kind: Secret
|
|
|
|
|
metadata:
|
|
|
|
|
name: tududi
|
|
|
|
|
namespace: tududi
|
|
|
|
|
type: Opaque
|
|
|
|
|
stringData:
|
|
|
|
|
user-email: you@example.com
|
|
|
|
|
user-password: CHANGE-ME
|
|
|
|
|
session-secret: CHANGE-ME
|
2026-08-12 14:01:32 -07:00
|
|
|
# The AI assistant requires a key to be set even when the provider ignores
|
|
|
|
|
# it (a local Ollama does). Any non-empty value works there; replace with a
|
|
|
|
|
# real key if you ever point LLM_BASE_URL at a paid provider.
|
|
|
|
|
llm-api-key: ollama
|