-
Notifications
You must be signed in to change notification settings - Fork 1
/
ingress.yml
51 lines (51 loc) · 1.32 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ingress-with-sni
namespace: conduktor
annotations:
nginx.ingress.kubernetes.io/ssl-passthrough: "true"
nginx.ingress.kubernetes.io/ssl-redirect: "false"
ingress.kubernetes.io/ssl-passthrough: "true"
nginx.ingress.kubernetes.io/backend-protocol: HTTPS
spec:
ingressClassName: nginx
tls:
- hosts:
- gateway.k8s.orb.local
- "*.gateway.k8s.orb.local"
rules:
- host: gateway.k8s.orb.local
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: gateway-external
port:
number: 9092
- path: /gateway/v2
pathType: Prefix
backend:
service:
name: gateway-external
port:
number: 8888
- path: /admin
pathType: Prefix
backend:
service:
name: gateway-external
port:
number: 8888
- host: "*.gateway.k8s.orb.local"
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: gateway-external
port:
number: 9092