Files
elixirAI/kubernetes/ingress.yml
Alex Mickelson 152fc87a27
All checks were successful
CI/CD Pipeline / build (push) Successful in 9s
ingress host
2026-03-10 08:49:47 -06:00

19 lines
377 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ai-ha-elixir
namespace: ai-ha-elixir
spec:
ingressClassName: nginx
rules:
- host: $INGRESS_HOST
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: ai-ha-elixir
port:
number: 80