Files
fastapi-postgres-gitops/manifests/app/ingress.yaml
ITO Mac 35d0d4b3b9 init
2026-05-19 10:53:09 +02:00

21 lines
463 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: fastapi-ingress
namespace: student-blazp04
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
ingressClassName: nginx
rules:
- host: blazp04.student.k3s.local
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: fastapi-service
port:
number: 80