-
Notifications
You must be signed in to change notification settings - Fork 0
/
aggregator.go
170 lines (137 loc) · 5.27 KB
/
aggregator.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
package tls
import (
"crypto/x509"
"crypto/x509/pkix"
"github.com/openshift/installer/pkg/asset"
)
// AggregatorCA is the asset that generates the aggregator-ca key/cert pair.
// [DEPRECATED]
type AggregatorCA struct {
SelfSignedCertKey
}
var _ asset.Asset = (*AggregatorCA)(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 *AggregatorCA) Dependencies() []asset.Asset {
return []asset.Asset{}
}
// Generate generates the cert/key pair based on its dependencies.
func (a *AggregatorCA) Generate(dependencies asset.Parents) error {
cfg := &CertCfg{
Subject: pkix.Name{CommonName: "aggregator", OrganizationalUnit: []string{"bootkube"}},
KeyUsages: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature | x509.KeyUsageCertSign,
Validity: ValidityOneDay,
IsCA: true,
}
return a.SelfSignedCertKey.Generate(cfg, "aggregator-ca")
}
// Name returns the human-friendly name of the asset.
func (a *AggregatorCA) Name() string {
return "Certificate (aggregator)"
}
// APIServerProxyCertKey is the asset that generates the API server proxy key/cert pair.
// [DEPRECATED]
type APIServerProxyCertKey struct {
SignedCertKey
}
var _ asset.Asset = (*APIServerProxyCertKey)(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 *APIServerProxyCertKey) Dependencies() []asset.Asset {
return []asset.Asset{
&AggregatorCA{},
}
}
// Generate generates the cert/key pair based on its dependencies.
func (a *APIServerProxyCertKey) Generate(dependencies asset.Parents) error {
aggregatorCA := &AggregatorCA{}
dependencies.Get(aggregatorCA)
cfg := &CertCfg{
Subject: pkix.Name{CommonName: "system:kube-apiserver-proxy", Organization: []string{"kube-master"}},
KeyUsages: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
ExtKeyUsages: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
Validity: ValidityOneDay,
}
return a.SignedCertKey.Generate(cfg, aggregatorCA, "apiserver-proxy", DoNotAppendParent)
}
// Name returns the human-friendly name of the asset.
func (a *APIServerProxyCertKey) Name() string {
return "Certificate (system:kube-apiserver-proxy)"
}
// AggregatorSignerCertKey is a key/cert pair that signs the aggregator client certs.
type AggregatorSignerCertKey struct {
SelfSignedCertKey
}
var _ asset.WritableAsset = (*AggregatorSignerCertKey)(nil)
// Dependencies returns the dependency of the root-ca, which is empty.
func (c *AggregatorSignerCertKey) Dependencies() []asset.Asset {
return []asset.Asset{}
}
// Generate generates the root-ca key and cert pair.
func (c *AggregatorSignerCertKey) Generate(parents asset.Parents) error {
cfg := &CertCfg{
Subject: pkix.Name{CommonName: "aggregator-signer", OrganizationalUnit: []string{"openshift"}},
KeyUsages: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature | x509.KeyUsageCertSign,
Validity: ValidityOneDay,
IsCA: true,
}
return c.SelfSignedCertKey.Generate(cfg, "aggregator-signer")
}
// Name returns the human-friendly name of the asset.
func (c *AggregatorSignerCertKey) Name() string {
return "Certificate (aggregator-signer)"
}
// AggregatorCABundle is the asset the generates the aggregator-ca-bundle,
// which contains all the individual client CAs.
type AggregatorCABundle struct {
CertBundle
}
var _ asset.Asset = (*AggregatorCABundle)(nil)
// Dependencies returns the dependency of the cert bundle.
func (a *AggregatorCABundle) Dependencies() []asset.Asset {
return []asset.Asset{
&AggregatorSignerCertKey{},
}
}
// Generate generates the cert bundle based on its dependencies.
func (a *AggregatorCABundle) 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("aggregator-ca-bundle", certs...)
}
// Name returns the human-friendly name of the asset.
func (a *AggregatorCABundle) Name() string {
return "Certificate (aggregator-ca-bundle)"
}
// AggregatorClientCertKey is the asset that generates the API server proxy key/cert pair.
type AggregatorClientCertKey struct {
SignedCertKey
}
var _ asset.Asset = (*AggregatorClientCertKey)(nil)
// Dependencies returns the dependency of the the cert/key pair
func (a *AggregatorClientCertKey) Dependencies() []asset.Asset {
return []asset.Asset{
&AggregatorSignerCertKey{},
}
}
// Generate generates the cert/key pair based on its dependencies.
func (a *AggregatorClientCertKey) Generate(dependencies asset.Parents) error {
ca := &AggregatorSignerCertKey{}
dependencies.Get(ca)
cfg := &CertCfg{
Subject: pkix.Name{CommonName: "system:kube-apiserver-proxy", Organization: []string{"kube-master"}},
KeyUsages: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
ExtKeyUsages: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
Validity: ValidityOneDay,
}
return a.SignedCertKey.Generate(cfg, ca, "apiserver-proxy", DoNotAppendParent)
}
// Name returns the human-friendly name of the asset.
func (a *AggregatorClientCertKey) Name() string {
return "Certificate (system:kube-apiserver-proxy)"
}