agent-runtime/k8s/cog-ingress.yaml
Nico 569a6022fe cognitive agent runtime v0.4.6: 3-node graph + Zitadel auth + K3s deploy
- Input/Output/Memorizer nodes with OpenRouter (Gemini Flash)
- Zitadel OIDC auth with PKCE flow, service token for Titan
- SSE event stream + poll endpoint for external observers
- Identity from Zitadel userinfo, listener context in Input prompt
- Trace logging to file + SSE broadcast
- K3s deployment on IONOS with Let's Encrypt TLS
- Frontend: chat + trace view, OIDC login

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-27 23:21:51 +01:00

26 lines
608 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: cog-runtime
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.entrypoints: websecure
traefik.ingress.kubernetes.io/router.tls: "true"
spec:
ingressClassName: traefik
tls:
- secretName: cog-tls
hosts:
- cog.loop42.de
rules:
- host: cog.loop42.de
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: agent-runtime
port:
number: 80