-
Notifications
You must be signed in to change notification settings - Fork 23
/
ingress-route.yaml
62 lines (62 loc) · 1.17 KB
/
ingress-route.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
54
55
56
57
58
59
60
61
62
---
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
name: htpc
spec:
entryPoints: []
routes:
- kind: Rule
match: PathPrefix(`/`)
middlewares: []
priority: 0
services:
- kind: Service
name: emby
namespace: "htpc"
port: 8096
- kind: Rule
match: PathPrefix(`/jackett`)
middlewares: []
priority: 0
services:
- kind: Service
name: jackett
namespace: "htpc"
port: 9117
- kind: Rule
match: PathPrefix(`/sonarr`)
middlewares: []
priority: 0
services:
- kind: Service
name: sonarr
namespace: "htpc"
port: 8989
- kind: Rule
match: PathPrefix(`/radarr`)
middlewares: []
priority: 0
services:
- kind: Service
name: radarr
namespace: "htpc"
port: 7878
- kind: Rule
match: PathPrefix(`/bazarr`)
middlewares: []
priority: 0
services:
- kind: Service
name: bazarr
namespace: "htpc"
port: 6767
- kind: Rule
match: PathPrefix(`/transmission`)
middlewares: []
priority: 0
services:
- kind: Service
name: transmission
namespace: "htpc"
port: 9091