forked from openshift/installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kubelet.go
230 lines (187 loc) · 7.46 KB
/
kubelet.go
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
package tls
import (
"crypto/x509"
"crypto/x509/pkix"
"github.com/openshift/installer/pkg/asset"
)
// KubeletCertKey is the asset that generates the kubelet key/cert pair.
// [DEPRECATED]
type KubeletCertKey struct {
SignedCertKey
}
var _ asset.Asset = (*KubeletCertKey)(nil)
// Dependencies returns the dependency of the the cert/key pair, which includes
// the parent CA, and install config if it depends on the install config for
// DNS names, etc.
func (a *KubeletCertKey) Dependencies() []asset.Asset {
return []asset.Asset{
&KubeCA{},
}
}
// Generate generates the cert/key pair based on its dependencies.
func (a *KubeletCertKey) Generate(dependencies asset.Parents) error {
kubeCA := &KubeCA{}
dependencies.Get(kubeCA)
cfg := &CertCfg{
Subject: pkix.Name{CommonName: "system:serviceaccount:openshift-machine-config-operator:node-bootstrapper", Organization: []string{"system:serviceaccounts:openshift-machine-config-operator"}},
KeyUsages: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
ExtKeyUsages: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
Validity: ValidityOneDay,
}
return a.SignedCertKey.Generate(cfg, kubeCA, "kubelet", DoNotAppendParent)
}
// Name returns the human-friendly name of the asset.
func (a *KubeletCertKey) Name() string {
return "Certificate (system:serviceaccount:openshift-machine-config-operator:node-bootstrapper)"
}
// KubeletCSRSignerCertKey is a key/cert pair that signs the kubelet client certs.
type KubeletCSRSignerCertKey struct {
SelfSignedCertKey
}
var _ asset.WritableAsset = (*KubeletCSRSignerCertKey)(nil)
// Dependencies returns the dependency of the root-ca, which is empty.
func (c *KubeletCSRSignerCertKey) Dependencies() []asset.Asset {
return []asset.Asset{}
}
// Generate generates the root-ca key and cert pair.
func (c *KubeletCSRSignerCertKey) Generate(parents asset.Parents) error {
cfg := &CertCfg{
Subject: pkix.Name{CommonName: "kubelet-signer", OrganizationalUnit: []string{"openshift"}},
KeyUsages: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature | x509.KeyUsageCertSign,
Validity: ValidityOneDay,
IsCA: true,
}
return c.SelfSignedCertKey.Generate(cfg, "kubelet-signer")
}
// Name returns the human-friendly name of the asset.
func (c *KubeletCSRSignerCertKey) Name() string {
return "Certificate (kubelet-signer)"
}
// KubeletClientCABundle is the asset the generates the kubelet-client-ca-bundle,
// which contains all the individual client CAs.
type KubeletClientCABundle struct {
CertBundle
}
var _ asset.Asset = (*KubeletClientCABundle)(nil)
// Dependencies returns the dependency of the cert bundle.
func (a *KubeletClientCABundle) Dependencies() []asset.Asset {
return []asset.Asset{
&KubeletCSRSignerCertKey{},
}
}
// Generate generates the cert bundle based on its dependencies.
func (a *KubeletClientCABundle) Generate(deps asset.Parents) error {
var certs []CertInterface
for _, asset := range a.Dependencies() {
deps.Get(asset)
certs = append(certs, asset.(CertInterface))
}
return a.CertBundle.Generate("kubelet-client-ca-bundle", certs...)
}
// Name returns the human-friendly name of the asset.
func (a *KubeletClientCABundle) Name() string {
return "Certificate (kubelet-client-ca-bundle)"
}
// KubeletServingCABundle is the asset the generates the kubelet-serving-ca-bundle,
// which contains all the individual client CAs.
type KubeletServingCABundle struct {
CertBundle
}
var _ asset.Asset = (*KubeletServingCABundle)(nil)
// Dependencies returns the dependency of the cert bundle.
func (a *KubeletServingCABundle) Dependencies() []asset.Asset {
return []asset.Asset{
&KubeletCSRSignerCertKey{},
}
}
// Generate generates the cert bundle based on its dependencies.
func (a *KubeletServingCABundle) Generate(deps asset.Parents) error {
var certs []CertInterface
for _, asset := range a.Dependencies() {
deps.Get(asset)
certs = append(certs, asset.(CertInterface))
}
return a.CertBundle.Generate("kubelet-serving-ca-bundle", certs...)
}
// Name returns the human-friendly name of the asset.
func (a *KubeletServingCABundle) Name() string {
return "Certificate (kubelet-serving-ca-bundle)"
}
// KubeletBootstrapCertSigner is a key/cert pair that signs the kubelet bootstrap kubeconfig client certs that the kubelet
// uses to create CSRs for it's real certificates
type KubeletBootstrapCertSigner struct {
SelfSignedCertKey
}
var _ asset.WritableAsset = (*KubeletBootstrapCertSigner)(nil)
// Dependencies returns the dependency of the root-ca, which is empty.
func (c *KubeletBootstrapCertSigner) Dependencies() []asset.Asset {
return []asset.Asset{}
}
// Generate generates the root-ca key and cert pair.
func (c *KubeletBootstrapCertSigner) Generate(parents asset.Parents) error {
cfg := &CertCfg{
Subject: pkix.Name{CommonName: "kubelet-bootstrap-kubeconfig-signer", OrganizationalUnit: []string{"openshift"}},
KeyUsages: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature | x509.KeyUsageCertSign,
Validity: ValidityTenYears,
IsCA: true,
}
return c.SelfSignedCertKey.Generate(cfg, "kubelet-bootstrap-kubeconfig-signer")
}
// Name returns the human-friendly name of the asset.
func (c *KubeletBootstrapCertSigner) Name() string {
return "Certificate (kubelet-bootstrap-kubeconfig-signer)"
}
// KubeletBootstrapCABundle is the asset the generates the admin-kubeconfig-ca-bundle,
// which contains all the individual client CAs.
type KubeletBootstrapCABundle struct {
CertBundle
}
var _ asset.Asset = (*KubeletBootstrapCABundle)(nil)
// Dependencies returns the dependency of the cert bundle.
func (a *KubeletBootstrapCABundle) Dependencies() []asset.Asset {
return []asset.Asset{
&KubeletBootstrapCertSigner{},
}
}
// Generate generates the cert bundle based on its dependencies.
func (a *KubeletBootstrapCABundle) Generate(deps asset.Parents) error {
var certs []CertInterface
for _, asset := range a.Dependencies() {
deps.Get(asset)
certs = append(certs, asset.(CertInterface))
}
return a.CertBundle.Generate("kubelet-bootstrap-kubeconfig-ca-bundle", certs...)
}
// Name returns the human-friendly name of the asset.
func (a *KubeletBootstrapCABundle) Name() string {
return "Certificate (kubelet-bootstrap-kubeconfig-ca-bundle)"
}
// KubeletClientCertKey is the asset that generates the key/cert pair for kubelet client to apiserver.
type KubeletClientCertKey struct {
SignedCertKey
}
var _ asset.Asset = (*KubeletClientCertKey)(nil)
// Dependencies returns the dependency of the the cert/key pair, which includes
// the parent CA, and install config if it depends on the install config for
// DNS names, etc.
func (a *KubeletClientCertKey) Dependencies() []asset.Asset {
return []asset.Asset{
&KubeletBootstrapCertSigner{},
}
}
// Generate generates the cert/key pair based on its dependencies.
func (a *KubeletClientCertKey) Generate(dependencies asset.Parents) error {
ca := &KubeletBootstrapCertSigner{}
dependencies.Get(ca)
cfg := &CertCfg{
Subject: pkix.Name{CommonName: "system:serviceaccount:openshift-machine-config-operator:node-bootstrapper", Organization: []string{"system:serviceaccounts:openshift-machine-config-operator"}},
KeyUsages: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
ExtKeyUsages: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
Validity: ValidityOneDay,
}
return a.SignedCertKey.Generate(cfg, ca, "kubelet-client", DoNotAppendParent)
}
// Name returns the human-friendly name of the asset.
func (a *KubeletClientCertKey) Name() string {
return "Certificate (kubelet-client)"
}