Files
schemas-app/k8s/ingress-local.yaml
T

20 lines
424 B
YAML
Raw Normal View History

2025-11-22 16:42:35 +01:00
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: schemas-app-ingress
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
ingressClassName: nginx
rules:
- host: "schemas.local"
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: schemas-app
port:
number: 80