-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
ingress_tls.yml
43 lines (43 loc) · 952 Bytes
/
ingress_tls.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
37
38
39
40
41
42
43
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: webservers
spec:
ingressClassName: nginx
tls:
- hosts:
- nginx.127-0-0-1.uk
- apache.127-0-0-1.uk
- caddy.127-0-0-1.uk
secretName: 127-0-0-1.uk-tls
rules:
- host: nginx.127-0-0-1.uk
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: nginx
port:
number: 80
- host: apache.127-0-0-1.uk
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: apache
port:
number: 80
- host: caddy.127-0-0-1.uk
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: caddy
port:
number: 80