nxtgauge-gitops/apps/litellm/base/ingress.yaml
Ashwin Kumar Sivakumar 7902b265a9 feat(ai): add AI plans docs, LiteLLM manifests, and infrastructure updates
- Add comprehensive AI plans implementation documentation
- Add LiteLLM gateway Kubernetes manifests
- Update PostgreSQL and Forgejo deployment configs
- Add build-from-binaries script
2026-06-15 06:15:41 +05:30

25 lines
586 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: litellm
namespace: nxtgauge-ai
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: web,websecure
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
ingressClassName: traefik
tls:
- hosts:
- llm.nxtgauge.com
secretName: litellm-tls
rules:
- host: llm.nxtgauge.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: litellm
port:
number: 4000