K8sStudy/hello-k3d/k8s/frontend-ingress.yaml

21 lines
430 B
YAML
Raw Permalink Normal View History

2025-06-23 23:10:34 +00:00
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: shoppinglist-ingress
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
ingressClassName: nginx
rules:
- host: localhost
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: shoppinglist-frontend
port:
number: 80