forked from openshift/installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kubeletcertkey.go
44 lines (35 loc) · 1.33 KB
/
kubeletcertkey.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
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.
type KubeletCertKey struct {
CertKey
}
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: ValidityThirtyMinutes,
}
return a.CertKey.Generate(cfg, kubeCA, "kubelet", DoNotAppendParent)
}
// Name returns the human-friendly name of the asset.
func (a *KubeletCertKey) Name() string {
return "Certificate (system:serviceaccount:kube-system:default)"
}