Files
traefik/pkg/provider/kubernetes/ingress-nginx/fixtures/ingresses/ingress-with-wildcard-host.yml
T
2026-03-31 16:14:06 +02:00

20 lines
384 B
YAML

---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ingress-with-wildcard-host
namespace: default
spec:
ingressClassName: nginx
rules:
- host: "*.localhost"
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: whoami
port:
number: 80