Files
ai/deploy/k8s/prod/kustomization.yaml
Tim Olson d41fcd0499 feat: add @tag model override support and remove Qdrant dependencies
- Add model-tags parser for @Tag syntax in chat messages
- Support Anthropic models (Sonnet, Haiku, Opus) via @tag
- Remove Qdrant vector database from infrastructure and configs
- Simplify license model config to use null fallbacks
- Add greeting stream after model switch via @tag
- Fix protobuf field names to camelCase for v7 compatibility
- Add 429 rate limit retry logic with exponential backoff
- Remove RAG references from agent harness documentation
2026-04-27 20:55:18 -04:00

62 lines
1.9 KiB
YAML

apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
# No namespace: transformer — kubectl --context=prod is configured with 'ai'
# as its default namespace, so all resources without an explicit namespace
# land in 'ai' automatically.
resources:
# Base: init.yaml, sandbox namespace, RBAC, admission-policy, sandbox-quotas,
# network-policies, gateway.yaml, web.yaml, ingress.yaml, gateway-ingress.yaml
- ../base
# Add the 'ai' namespace (base only creates 'sandbox')
- namespaces.yaml
# Prod infrastructure (postgres, minio, kafka, flink, relay, ingestor, dragonfly, iceberg)
- infrastructure.yaml
# Sandbox namespace resources (go to sandbox namespace, not ai)
- sandbox-config.yaml
# gateway-config ConfigMap (database URL is in secrets, not here)
- configs/gateway-config.yaml
patches:
- path: patch-gateway-rbac-subject.yaml
- path: patch-web.yaml
- path: patch-gateway-ingress.yaml
configMapGenerator:
- name: relay-config
files:
- config.yaml=configs/relay-config.yaml
- name: ingestor-config
files:
- config.yaml=configs/ingestor-config.yaml
- name: flink-config
files:
- config.yaml=configs/flink-config.yaml
# Secrets managed via bin/secret-update prod (op inject | kubectl apply)
secretGenerator: []
generatorOptions:
disableNameSuffixHash: true
images:
- name: dexorder/ai-gateway
newName: git.dxod.org/dexorder/dexorder/ai-gateway
newTag: latest
- name: ghcr.io/dexorder/gateway
newName: git.dxod.org/dexorder/dexorder/ai-gateway
newTag: latest
- name: dexorder/ai-web
newName: git.dxod.org/dexorder/dexorder/ai-web
newTag: latest
- name: dexorder/ai-flink
newName: git.dxod.org/dexorder/dexorder/ai-flink
newTag: latest
- name: dexorder/ai-relay
newName: git.dxod.org/dexorder/dexorder/ai-relay
newTag: latest
- name: dexorder/ai-ingestor
newName: git.dxod.org/dexorder/dexorder/ai-ingestor
newTag: latest