forked from BigKAA/youtube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
certs.yaml
129 lines (121 loc) · 2.26 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
---
apiVersion: cert-manager.io/v1
kind: Issuer
metadata:
name: selfsigned-issuer
namespace: es
spec:
selfSigned: {}
---
# Самоподписанный сертификат CA
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: ca
namespace: es
spec:
isCA: true
duration: 87600h # 10y
subject:
organizations:
- "Artur's home"
organizationalUnits:
- "IT dep"
localities:
- "Moscow"
countries:
- "RU"
commonName: Opensearch CA
secretName: ca-secret
privateKey:
algorithm: RSA
encoding: PKCS8
size: 4096
issuerRef:
name: selfsigned-issuer
kind: Issuer
group: cert-manager.io
---
apiVersion: cert-manager.io/v1
kind: Issuer
metadata:
name: opensearch-issuer
namespace: es
spec:
ca:
secretName: ca-secret
---
# Сертификат для всех нод opensearch
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: master-cert
namespace: es
spec:
secretName: master-tls
duration: 8760h # 1y
renewBefore: 360h # 15d
commonName: nodes
subject:
organizations:
- "Artur's home"
organizationalUnits:
- "IT dep"
localities:
- "Moscow"
countries:
- "RU"
isCA: false
privateKey:
algorithm: RSA
encoding: PKCS8
rotationPolicy: Always
size: 4096
usages:
- server auth
- client auth
dnsNames:
- localhost
- esapi.kryukov.local
- kibana.kryukov.local
- opensearch-cluster-master.es.svc
- opensearch-cluster-master.es.cluster.local
ipAddresses:
- 127.0.0.1
issuerRef:
group: cert-manager.io
kind: Issuer
name: opensearch-issuer
---
# Сертификат администратора opensearch
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: admin-cert
namespace: es
spec:
secretName: admin-tls
duration: 8760h # 1y
renewBefore: 360h # 15d
commonName: artur
subject:
organizations:
- "Artur's home"
organizationalUnits:
- "IT dep"
localities:
- "Moscow"
countries:
- "RU"
isCA: false
privateKey:
algorithm: RSA
encoding: PKCS8
rotationPolicy: Always
size: 4096
usages:
- client auth
issuerRef:
group: cert-manager.io
kind: Issuer
name: opensearch-issuer