Skip to content

Commit e5e437b

Browse files
update istio path
1 parent 40687f7 commit e5e437b

File tree

2 files changed

+111
-0
lines changed

2 files changed

+111
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
apiVersion: cert-manager.io/v1
3+
kind: Certificate
4+
metadata:
5+
name: ingress-cert
6+
namespace: istio-system
7+
spec:
8+
secretName: ingress-cert
9+
commonName: '*.svc.pt.soeren.cloud'
10+
dnsNames:
11+
- '*.svc.pt.soeren.cloud'
12+
issuerRef:
13+
name: letsencrypt-dns-prod
14+
kind: ClusterIssuer
15+
group: cert-manager.io
Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
---
2+
apiVersion: networking.istio.io/v1alpha3
3+
kind: Gateway
4+
metadata:
5+
name: gateway
6+
namespace: istio-system
7+
spec:
8+
selector:
9+
istio: ingressgateway
10+
servers:
11+
- port:
12+
number: 22
13+
name: ssh
14+
protocol: TCP
15+
hosts:
16+
- "*"
17+
- port:
18+
number: 80
19+
name: http
20+
protocol: HTTP
21+
hosts:
22+
- "*"
23+
tls:
24+
httpsRedirect: true
25+
- port:
26+
number: 443
27+
name: https
28+
protocol: HTTPS
29+
tls:
30+
mode: SIMPLE
31+
credentialName: ingress-cert
32+
hosts:
33+
- "*"
34+
- port:
35+
number: 443
36+
name: https-passthrough
37+
protocol: HTTPS
38+
tls:
39+
mode: PASSTHROUGH
40+
hosts:
41+
- minio.svc.pt.soeren.cloud
42+
- minio-console.svc.pt.soeren.cloud
43+
- port:
44+
number: 1883
45+
name: mqtt
46+
protocol: TCP
47+
hosts:
48+
- "*"
49+
- port:
50+
number: 8883
51+
name: mqtt-tls
52+
protocol: TCP
53+
hosts:
54+
- "*"
55+
- port:
56+
number: 53589
57+
name: taskd
58+
protocol: TCP
59+
hosts:
60+
- "*"
61+
- port:
62+
number: 3306
63+
name: "mariadb"
64+
protocol: TCP
65+
hosts:
66+
- "*"
67+
- port:
68+
number: 4567
69+
name: "replicate-tcp"
70+
protocol: TCP
71+
hosts:
72+
- "*"
73+
- port:
74+
number: 4568
75+
name: "iss"
76+
protocol: TCP
77+
hosts:
78+
- "*"
79+
- port:
80+
number: 4444
81+
name: "sst"
82+
protocol: TCP
83+
hosts:
84+
- "*"
85+
- port:
86+
number: 5671
87+
name: "amqp-tls"
88+
protocol: TCP
89+
hosts:
90+
- "*"
91+
- port:
92+
number: 9094
93+
name: "am-cluster"
94+
protocol: TCP
95+
hosts:
96+
- "*"

0 commit comments

Comments
 (0)