forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crds.go
376 lines (347 loc) · 12.5 KB
/
crds.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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
package kube
import (
"fmt"
"reflect"
"time"
"github.com/cenkalti/backoff"
"github.com/ghodss/yaml"
"github.com/jenkins-x/jx/pkg/apis/jenkins.io"
"github.com/jenkins-x/jx/pkg/jx/cmd/certmanager"
"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
apiextensionsclientset "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
)
const (
CertmanagerCertificateProd = "letsencrypt-prod"
CertmanagerCertificateStaging = "letsencrypt-staging"
CertmanagerIssuerProd = "letsencrypt-prod"
CertmanagerIssuerStaging = "letsencrypt-staging"
)
// RegisterEnvironmentCRD ensures that the CRD is registered for Environments
func RegisterEnvironmentCRD(apiClient apiextensionsclientset.Interface) error {
name := "environments." + jenkinsio.GroupName
names := &v1beta1.CustomResourceDefinitionNames{
Kind: "Environment",
ListKind: "EnvironmentList",
Plural: "environments",
Singular: "environment",
ShortNames: []string{"env"},
}
columns := []v1beta1.CustomResourceColumnDefinition{
{
Name: "Namespace",
Type: "string",
Description: "The namespace used for the environment",
JSONPath: ".spec.namespace",
},
{
Name: "Kind",
Type: "string",
Description: "The kind of environment",
JSONPath: ".spec.kind",
},
{
Name: "Promotion Strategy",
Type: "string",
Description: "The strategy used for promoting to this environment",
JSONPath: ".spec.oromotionStrategy",
},
{
Name: "Order",
Type: "integer",
Description: "The order in which environments are automatically promoted",
JSONPath: ".spec.order",
},
{
Name: "Git URL",
Type: "string",
Description: "The Git repository URL for the source of the environment configuration",
JSONPath: ".spec.source.url",
},
{
Name: "Git Branch",
Type: "string",
Description: "The git branch for the source of the environment configuration",
JSONPath: ".spec.source.ref",
},
}
return registerCRD(apiClient, name, names, columns)
}
// RegisterEnvironmentRoleBindingCRD ensures that the CRD is registered for Environments
func RegisterEnvironmentRoleBindingCRD(apiClient apiextensionsclientset.Interface) error {
name := "environmentrolebindings." + jenkinsio.GroupName
names := &v1beta1.CustomResourceDefinitionNames{
Kind: "EnvironmentRoleBinding",
ListKind: "EnvironmentRoleBindingList",
Plural: "environmentrolebindings",
Singular: "environmentrolebinding",
ShortNames: []string{"envrolebindings", "envrolebinding", "envrb"},
}
columns := []v1beta1.CustomResourceColumnDefinition{}
return registerCRD(apiClient, name, names, columns)
}
// RegisterGitServiceCRD ensures that the CRD is registered for GitServices
func RegisterGitServiceCRD(apiClient apiextensionsclientset.Interface) error {
name := "gitservices." + jenkinsio.GroupName
names := &v1beta1.CustomResourceDefinitionNames{
Kind: "GitService",
ListKind: "GitServiceList",
Plural: "gitservices",
Singular: "gitservice",
ShortNames: []string{"gits"},
}
columns := []v1beta1.CustomResourceColumnDefinition{}
return registerCRD(apiClient, name, names, columns)
}
// RegisterPipelineActivityCRD ensures that the CRD is registered for PipelineActivity
func RegisterPipelineActivityCRD(apiClient apiextensionsclientset.Interface) error {
name := "pipelineactivities." + jenkinsio.GroupName
names := &v1beta1.CustomResourceDefinitionNames{
Kind: "PipelineActivity",
ListKind: "PipelineActivityList",
Plural: "pipelineactivities",
Singular: "pipelineactivity",
ShortNames: []string{"activity", "act"},
}
columns := []v1beta1.CustomResourceColumnDefinition{
{
Name: "Git URL",
Type: "string",
Description: "The URL of the Git repository",
JSONPath: ".spec.gitUrl",
},
{
Name: "Status",
Type: "string",
Description: "The status of the pipeline",
JSONPath: ".spec.status",
},
}
return registerCRD(apiClient, name, names, columns)
}
// RegisterExtensionCRD ensures that the CRD is registered for Extension
func RegisterExtensionCRD(apiClient apiextensionsclientset.Interface) error {
name := "extensions." + jenkinsio.GroupName
names := &v1beta1.CustomResourceDefinitionNames{
Kind: "Extension",
ListKind: "ExtensionList",
Plural: "extensions",
Singular: "extensions",
ShortNames: []string{"extension", "ext"},
}
columns := []v1beta1.CustomResourceColumnDefinition{
{
Name: "Name",
Type: "string",
Description: "The name of the extension",
JSONPath: ".spec.name",
},
{
Name: "Description",
Type: "string",
Description: "A description of the extension",
JSONPath: ".spec.description",
},
}
return registerCRD(apiClient, name, names, columns)
}
// RegisterComplianceCheckCRD ensures that the CRD is registered for Extension
func RegisterComplianceCheckCRD(apiClient apiextensionsclientset.Interface) error {
name := "compliancechecks." + jenkinsio.GroupName
names := &v1beta1.CustomResourceDefinitionNames{
Kind: "ComplianceCheck",
ListKind: "ComplianceCheckList",
Plural: "compliancechecks",
Singular: "compliancecheck",
ShortNames: []string{"compliancecheck"},
}
columns := []v1beta1.CustomResourceColumnDefinition{}
return registerCRD(apiClient, name, names, columns)
}
// RegisterReleaseCRD ensures that the CRD is registered for Release
func RegisterReleaseCRD(apiClient apiextensionsclientset.Interface) error {
name := "releases." + jenkinsio.GroupName
names := &v1beta1.CustomResourceDefinitionNames{
Kind: "Release",
ListKind: "ReleaseList",
Plural: "releases",
Singular: "release",
ShortNames: []string{"rel"},
}
columns := []v1beta1.CustomResourceColumnDefinition{
{
Name: "Name",
Type: "string",
Description: "The name of the Release",
JSONPath: ".spec.name",
},
{
Name: "Version",
Type: "string",
Description: "The version number of the Release",
JSONPath: ".spec.version",
},
{
Name: "Git URL",
Type: "string",
Description: "The URL of the Git repository",
JSONPath: ".spec.gitHttpUrl",
},
}
return registerCRD(apiClient, name, names, columns)
}
// RegisterUserCRD ensures that the CRD is registered for User
func RegisterUserCRD(apiClient apiextensionsclientset.Interface) error {
name := "users." + jenkinsio.GroupName
names := &v1beta1.CustomResourceDefinitionNames{
Kind: "User",
ListKind: "UserList",
Plural: "users",
Singular: "user",
ShortNames: []string{"usr"},
}
columns := []v1beta1.CustomResourceColumnDefinition{
{
Name: "Name",
Type: "string",
Description: "The name of the user",
JSONPath: ".spec.name",
},
{
Name: "Email",
Type: "string",
Description: "The email address of the user",
JSONPath: ".spec.email",
},
}
return registerCRD(apiClient, name, names, columns)
}
// RegisterTeamCRD ensures that the CRD is registered for Team
func RegisterTeamCRD(apiClient apiextensionsclientset.Interface) error {
name := "teams." + jenkinsio.GroupName
names := &v1beta1.CustomResourceDefinitionNames{
Kind: "Team",
ListKind: "TeamList",
Plural: "teams",
Singular: "team",
ShortNames: []string{"tm"},
}
columns := []v1beta1.CustomResourceColumnDefinition{
{
Name: "Kind",
Type: "string",
Description: "The kind of Team",
JSONPath: ".spec.kind",
},
{
Name: "Status",
Type: "string",
Description: "The provision status of the Team",
JSONPath: ".status.provisionStatus",
},
}
return registerCRD(apiClient, name, names, columns)
}
// RegisterWorkflowCRD ensures that the CRD is registered for Environments
func RegisterWorkflowCRD(apiClient apiextensionsclientset.Interface) error {
name := "workflows." + jenkinsio.GroupName
names := &v1beta1.CustomResourceDefinitionNames{
Kind: "Workflow",
ListKind: "WorkflowList",
Plural: "workflows",
Singular: "workflow",
ShortNames: []string{"flow"},
}
columns := []v1beta1.CustomResourceColumnDefinition{}
return registerCRD(apiClient, name, names, columns)
}
func registerCRD(apiClient apiextensionsclientset.Interface, name string, names *v1beta1.CustomResourceDefinitionNames, columns []v1beta1.CustomResourceColumnDefinition) error {
crd := &v1beta1.CustomResourceDefinition{
ObjectMeta: metav1.ObjectMeta{
Name: name,
},
Spec: v1beta1.CustomResourceDefinitionSpec{
Group: jenkinsio.GroupName,
Version: jenkinsio.Version,
Scope: v1beta1.NamespaceScoped,
Names: *names,
AdditionalPrinterColumns: columns,
},
}
return register(apiClient, name, crd)
}
func register(apiClient apiextensionsclientset.Interface, name string, crd *v1beta1.CustomResourceDefinition) error {
crdResources := apiClient.ApiextensionsV1beta1().CustomResourceDefinitions()
f := func() error {
old, err := crdResources.Get(name, metav1.GetOptions{})
if err == nil {
if !reflect.DeepEqual(&crd.Spec, old.Spec) {
old.Spec = crd.Spec
_, err = crdResources.Update(old)
return err
}
return nil
}
_, err = crdResources.Create(crd)
return err
}
exponentialBackOff := backoff.NewExponentialBackOff()
timeout := 60 * time.Second
exponentialBackOff.MaxElapsedTime = timeout
exponentialBackOff.Reset()
return backoff.Retry(f, exponentialBackOff)
}
func CleanCertmanagerResources(c kubernetes.Interface, ns string, config IngressConfig) error {
if config.Issuer == CertmanagerIssuerProd {
_, err := c.CoreV1().RESTClient().Get().RequestURI(fmt.Sprintf("/apis/certmanager.k8s.io/v1alpha1/namespaces/%s/issuers", ns)).Name(CertmanagerIssuerProd).DoRaw()
if err == nil {
// existing clusterissuers found, recreate
_, err = c.CoreV1().RESTClient().Delete().RequestURI(fmt.Sprintf("/apis/certmanager.k8s.io/v1alpha1/namespaces/%s/issuers", ns)).Name(CertmanagerIssuerProd).DoRaw()
if err != nil {
return fmt.Errorf("failed to delete issuer %s %v", "letsencrypt-prod", err)
}
}
if config.TLS {
issuerProd := fmt.Sprintf(certmanager.Cert_manager_issuer_prod, config.Email)
json, err := yaml.YAMLToJSON([]byte(issuerProd))
resp, err := c.CoreV1().RESTClient().Post().RequestURI(fmt.Sprintf("/apis/certmanager.k8s.io/v1alpha1/namespaces/%s/issuers", ns)).Body(json).DoRaw()
if err != nil {
return fmt.Errorf("failed to create issuer %v: %s", err, string(resp))
}
}
} else {
_, err := c.CoreV1().RESTClient().Get().RequestURI(fmt.Sprintf("/apis/certmanager.k8s.io/v1alpha1/namespaces/%s/issuers", ns)).Name(CertmanagerIssuerStaging).DoRaw()
if err == nil {
// existing clusterissuers found, recreate
resp, err := c.CoreV1().RESTClient().Delete().RequestURI(fmt.Sprintf("/apis/certmanager.k8s.io/v1alpha1/namespaces/%s/issuers", ns)).Name(CertmanagerIssuerStaging).DoRaw()
if err != nil {
return fmt.Errorf("failed to delete issuer %v: %s", err, string(resp))
}
}
if config.TLS {
issuerStage := fmt.Sprintf(certmanager.Cert_manager_issuer_stage, config.Email)
json, err := yaml.YAMLToJSON([]byte(issuerStage))
resp, err := c.CoreV1().RESTClient().Post().RequestURI(fmt.Sprintf("/apis/certmanager.k8s.io/v1alpha1/namespaces/%s/issuers", ns)).Body(json).DoRaw()
if err != nil {
return fmt.Errorf("failed to create issuer %v: %s", err, string(resp))
}
}
}
// lets not error if they dont exist
c.CoreV1().RESTClient().Delete().RequestURI(fmt.Sprintf("/apis/certmanager.k8s.io/v1alpha1/namespaces/%s/certificates", ns)).Name(CertmanagerCertificateStaging).DoRaw()
c.CoreV1().RESTClient().Delete().RequestURI(fmt.Sprintf("/apis/certmanager.k8s.io/v1alpha1/namespaces/%s/certificates", ns)).Name(CertmanagerCertificateProd).DoRaw()
// dont think we need this as we use a shim from ingress annotations to dynamically create the certificates
//if config.TLS {
// cert := fmt.Sprintf(certmanager.Cert_manager_certificate, config.Issuer, config.Issuer, config.Domain, config.Domain)
// json, err := yaml.YAMLToJSON([]byte(cert))
// if err != nil {
// return fmt.Errorf("unable to convert YAML %s to JSON: %v", cert, err)
// }
// _, err = c.CoreV1().RESTClient().Post().RequestURI(fmt.Sprintf("/apis/certmanager.k8s.io/v1alpha1/namespaces/%s/certificates", ns)).Body(json).DoRaw()
// if err != nil {
// return fmt.Errorf("failed to create certificate %v", err)
// }
//}
return nil
}