-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
ingress.yml
36 lines (36 loc) · 795 Bytes
/
ingress.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: webservers
spec:
rules:
- host: nginx.127.0.0.1.nip.io
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: nginx
port:
number: 80
- host: apache.127.0.0.1.nip.io
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: apache
port:
number: 80
- host: caddy.127.0.0.1.nip.io
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: caddy
port:
number: 80