aboutsummaryrefslogtreecommitdiff
path: root/kubernetes/traefik/04-whoami-ingress.yml
blob: 5c984cc1334175c4bff37410e4f0dab986eafe9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: whoami-ingress
spec:
  rules:
  - host: whoami.local
  - http:
      paths:
      - path: /
        pathType: Prefix
        backend:
          service:
            name: whoami
            port:
              name: web
...