-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcerts.yaml
60 lines (60 loc) · 1.24 KB
/
certs.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
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: ingress-cert-gitlab
namespace: istio-system
spec:
secretName: ingress-cert-gitlab
commonName: gitlab.allnice.eu
issuerRef:
name: letsencrypt-prod
kind: ClusterIssuer
group: cert-manager.io
dnsNames:
- gitlab.allnice.eu
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: ingress-cert-registry
namespace: istio-system
spec:
secretName: ingress-cert-registry
commonName: registry.allnice.eu
issuerRef:
name: letsencrypt-prod
kind: ClusterIssuer
group: cert-manager.io
dnsNames:
- registry.allnice.eu
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: ingress-cert-minio
namespace: istio-system
spec:
secretName: ingress-cert-minio
commonName: minio.allnice.eu
issuerRef:
name: letsencrypt-prod
kind: ClusterIssuer
group: cert-manager.io
dnsNames:
- minio.allnice.eu
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: ingress-cert-gitlab-wc
namespace: istio-system
spec:
secretName: ingress-cert-gitlab-wc
commonName: "*.gitlab.allnice.eu"
issuerRef:
name: letsencrypt-prod
kind: ClusterIssuer
group: cert-manager.io
dnsNames:
- "*.gitlab.allnice.eu"
---