-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgan-certificates.yml
73 lines (73 loc) · 1.4 KB
/
gan-certificates.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: ignition-gan-ca
spec:
isCA: true
commonName: ignition-gan-ca
secretName: ignition-gan-ca
privateKey:
algorithm: ECDSA
size: 256
duration: 17520h # 2 years
issuerRef:
name: selfsigned-issuer
kind: ClusterIssuer
group: cert-manager.io
---
apiVersion: cert-manager.io/v1
kind: Issuer
metadata:
name: ignition-gan-issuer
spec:
ca:
secretName: ignition-gan-ca
---
apiVersion: v1
kind: Secret
metadata:
name: ignition-gan-metro-keystore
type: Opaque
data:
metro.keystore.password: bWV0cm8= # metro
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: frontend-gan
spec:
secretName: frontend-gan-tls
issuerRef:
name: ignition-gan-issuer
kind: Issuer
commonName: "frontend"
dnsNames:
- "*.ign-frontend"
duration: 8760h # 1 year
keystores:
pkcs12:
create: true
passwordSecretRef:
name: ignition-gan-metro-keystore
key: metro.keystore.password
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: backend-gan
spec:
secretName: backend-gan-tls
issuerRef:
name: ignition-gan-issuer
kind: Issuer
commonName: "backend"
dnsNames:
- "*.ign-backend"
duration: 8760h # 1 year
keystores:
pkcs12:
create: true
passwordSecretRef:
name: ignition-gan-metro-keystore
key: metro.keystore.password