forked from ysicing/kubernetes-handbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ingress.yaml
53 lines (53 loc) · 1.14 KB
/
ingress.yaml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: traefik-ingress
namespace: default
spec:
rules:
- host: traefik.nginx.io
http:
paths:
- path: /
backend:
serviceName: my-nginx
servicePort: 80
- host: traefik.frontend.io
http:
paths:
- path: /
backend:
serviceName: frontend
servicePort: 80
- host: rolling-update-test.traefik.io
http:
paths:
- path: /
backend:
serviceName: rolling-update-test
servicePort: 9090
- host: k8s-app-monitor-agent.jimmysong.io
http:
paths:
- path: /
backend:
serviceName: k8s-app-monitor-agent
servicePort: 8080
- host: mean.jimmysong.io
http:
paths:
- path: /
backend:
serviceName: orbiting-platypus-mean
servicePort: 80
- host: helm.jimmysong.io
http:
paths:
- path: /
backend:
serviceName: monocular-monocular-ui
servicePort: 80
- path: /api/
backend:
serviceName: monocular-monocular-api
servicePort: 80