-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathresource_helm_release.go
420 lines (344 loc) · 15.7 KB
/
resource_helm_release.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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
// © Broadcom. All Rights Reserved.
// The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
// SPDX-License-Identifier: MPL-2.0
package helmrelease
import (
"context"
"log"
"strings"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/pkg/errors"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/authctx"
clienterrors "github.com/vmware/terraform-provider-tanzu-mission-control/internal/client/errors"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/helper"
helmclustermodel "github.com/vmware/terraform-provider-tanzu-mission-control/internal/models/helmfeature/cluster"
helmclustergroupmodel "github.com/vmware/terraform-provider-tanzu-mission-control/internal/models/helmfeature/clustergroup"
releaseclustermodel "github.com/vmware/terraform-provider-tanzu-mission-control/internal/models/helmrelease/cluster"
releaseclustergroupmodel "github.com/vmware/terraform-provider-tanzu-mission-control/internal/models/helmrelease/clustergroup"
objectmetamodel "github.com/vmware/terraform-provider-tanzu-mission-control/internal/models/objectmeta"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/resources/common"
commonscope "github.com/vmware/terraform-provider-tanzu-mission-control/internal/resources/common/scope"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/resources/helmrelease/scope"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/resources/helmrelease/spec"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/resources/helmrelease/status"
)
const (
ResourceName = "tanzu-mission-control_helm_release"
nameKey = "name"
namespaceNameKey = "namespace_name"
statusKey = "status"
featureRefKey = "feature_ref"
disabledKey = "Disabled"
)
func ResourceHelmRelease() *schema.Resource {
return &schema.Resource{
Schema: getHelmReleaseSchema(false),
CreateContext: resourceHelmReleaseCreate,
ReadContext: dataSourceHelmReleaseRead,
UpdateContext: resourceHelmReleaseInPlaceUpdate,
DeleteContext: resourceHelmReleaseDelete,
CustomizeDiff: schema.CustomizeDiffFunc(commonscope.ValidateScope([]string{commonscope.ClusterKey, commonscope.ClusterGroupKey})),
}
}
func getHelmReleaseSchema(isDataSource bool) map[string]*schema.Schema {
var helmReleaseSchema = map[string]*schema.Schema{
nameKey: {
Type: schema.TypeString,
Description: "Name of the Repository.",
Required: true,
ForceNew: true,
},
namespaceNameKey: {
Type: schema.TypeString,
Description: "Name of Namespace.",
Required: true,
ForceNew: true,
},
featureRefKey: {
Type: schema.TypeString,
Description: "when specified, ensures clean up of this Terraform resource from the state file by creating a dependency on the Helm feature when the Helm feature is disabled",
Optional: true,
},
commonscope.ScopeKey: scope.ScopeSchema,
common.MetaKey: common.Meta,
statusKey: status.StatusSchema,
}
innerMap := map[string]*schema.Schema{
spec.SpecKey: spec.SpecSchema,
}
for key, value := range innerMap {
if isDataSource {
helmReleaseSchema[key] = helper.UpdateDataSourceSchema(value)
} else {
helmReleaseSchema[key] = value
}
}
return helmReleaseSchema
}
func resourceHelmReleaseCreate(ctx context.Context, d *schema.ResourceData, m interface{}) (diags diag.Diagnostics) {
config := m.(authctx.TanzuContext)
helmReleaseName, ok := d.Get(nameKey).(string)
if !ok {
return diag.Errorf("Unable to read helm release name")
}
helmReleaseNamespaceName, ok := d.Get(namespaceNameKey).(string)
if !ok {
return diag.Errorf("Unable to read helm release namespace name")
}
scopedFullnameData := scope.ConstructScope(d, helmReleaseName, helmReleaseNamespaceName)
if scopedFullnameData == nil {
return diag.Errorf("Unable to create Tanzu Mission Control helm release entry; Scope full name is empty")
}
err := checkHelmFeature(config, scopedFullnameData)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to create Tanzu Mission Control cluster helm release entry, name : %s", helmReleaseName))
}
var (
UID string
meta = common.ConstructMeta(d)
)
switch scopedFullnameData.Scope {
case commonscope.ClusterScope:
if scopedFullnameData.FullnameCluster != nil {
specVal, err := spec.ConstructSpecForClusterScope(d)
if err != nil {
return diag.FromErr(err)
}
helmReleaseReq := &releaseclustermodel.VmwareTanzuManageV1alpha1ClusterNamespaceFluxcdHelmReleaseRequest{
Release: &releaseclustermodel.VmwareTanzuManageV1alpha1ClusterNamespaceFluxcdHelmReleaseRelease{
FullName: scopedFullnameData.FullnameCluster,
Meta: meta,
Spec: specVal,
},
}
helmReleaseResponse, err := config.TMCConnection.ClusterHelmReleaseResourceService.VmwareTanzuManageV1alpha1ClusterReleaseResourceServiceCreate(helmReleaseReq)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to create Tanzu Mission Control cluster helm release entry, name : %s", helmReleaseName))
}
UID = helmReleaseResponse.Release.Meta.UID
}
case commonscope.ClusterGroupScope:
if scopedFullnameData.FullnameClusterGroup != nil {
specVal, err := spec.ConstructSpecForClusterGroupScope(d)
if err != nil {
return diag.FromErr(err)
}
helmReleaseReq := &releaseclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupNamespaceFluxcdHelmReleaseRequest{
Release: &releaseclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupNamespaceFluxcdHelmReleaseRelease{
FullName: scopedFullnameData.FullnameClusterGroup,
Meta: meta,
Spec: specVal,
},
}
helmReleaseResponse, err := config.TMCConnection.ClusterGroupHelmReleaseResourceService.VmwareTanzuManageV1alpha1ClustergroupReleaseResourceServiceCreate(helmReleaseReq)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to create Tanzu Mission Control cluster group helm release entry, name : %s", helmReleaseName))
}
UID = helmReleaseResponse.Release.Meta.UID
}
case commonscope.UnknownScope:
return diag.Errorf("no valid scope type block found: minimum one valid scope type block is required among: %v. Please check the schema.", strings.Join(scope.ScopesAllowed[:], `, `))
}
// always run
d.SetId(UID)
return dataSourceHelmReleaseRead(ctx, d, m)
}
func resourceHelmReleaseDelete(ctx context.Context, d *schema.ResourceData, m interface{}) (diags diag.Diagnostics) {
config := m.(authctx.TanzuContext)
helmReleaseName, ok := d.Get(nameKey).(string)
if !ok {
return diag.Errorf("Unable to read helm release name")
}
helmReleaseNamespaceName, ok := d.Get(namespaceNameKey).(string)
if !ok {
return diag.Errorf("Unable to read helm release namespace name")
}
scopedFullnameData := scope.ConstructScope(d, helmReleaseName, helmReleaseNamespaceName)
if scopedFullnameData == nil {
return diag.Errorf("Unable to delete Tanzu Mission Control helm release entry; Scope full name is empty")
}
switch scopedFullnameData.Scope {
case commonscope.ClusterScope:
if scopedFullnameData.FullnameCluster != nil {
err := config.TMCConnection.ClusterHelmReleaseResourceService.VmwareTanzuManageV1alpha1ClusterReleaseResourceServiceDelete(scopedFullnameData.FullnameCluster)
if err != nil && !clienterrors.IsNotFoundError(err) {
return diag.FromErr(errors.Wrapf(err, "Unable to delete Tanzu Mission Control cluster helm release entry, name : %s", helmReleaseName))
}
}
case commonscope.ClusterGroupScope:
if scopedFullnameData.FullnameClusterGroup != nil {
err := config.TMCConnection.ClusterGroupHelmReleaseResourceService.VmwareTanzuManageV1alpha1ClustergroupReleaseResourceServiceDelete(scopedFullnameData.FullnameClusterGroup)
if err != nil && !clienterrors.IsNotFoundError(err) {
return diag.FromErr(errors.Wrapf(err, "Unable to delete Tanzu Mission Control cluster group helm release entry, name : %s", helmReleaseName))
}
}
case commonscope.UnknownScope:
return diag.Errorf("no valid scope type block found: minimum one valid scope type block is required among: %v. Please check the schema.", strings.Join(scope.ScopesAllowed[:], `, `))
}
// d.SetId("") is automatically called assuming delete returns no errors, but
// it is added here for explicitness.
d.SetId("")
return diags
}
func resourceHelmReleaseInPlaceUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) (diags diag.Diagnostics) {
config := m.(authctx.TanzuContext)
helmReleaseName, ok := d.Get(nameKey).(string)
if !ok {
return diag.Errorf("Unable to read helm release name")
}
helmReleaseNamespaceName, ok := d.Get(namespaceNameKey).(string)
if !ok {
return diag.Errorf("Unable to read helm release namespace name")
}
scopedFullnameData := scope.ConstructScope(d, helmReleaseName, helmReleaseNamespaceName)
if scopedFullnameData == nil {
return diag.Errorf("Unable to update Tanzu Mission Control helm release entry; Scope full name is empty")
}
err := checkHelmFeature(config, scopedFullnameData)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to Update, Tanzu Mission Control cluster helm release entry, name : %s", helmReleaseName))
}
helmReleaseDataFromServer, err := retrieveHelmReleaseDataFromServer(config, scopedFullnameData, d)
if err != nil {
log.Println("[ERROR] Unable to get data from server.")
return diag.FromErr(err)
}
var updateAvailable bool
if updateCheckForMeta(d, helmReleaseDataFromServer.meta) {
updateAvailable = true
}
specCheck, err := updateCheckForSpec(d, helmReleaseDataFromServer.atomicSpec, scopedFullnameData.Scope)
if err != nil {
log.Println("[ERROR] Unable to check spec has been updated.")
return diag.FromErr(err)
}
if specCheck {
updateAvailable = true
}
if !updateAvailable {
log.Printf("[INFO] helm release update is not required")
return diags
}
switch scopedFullnameData.Scope {
case commonscope.ClusterScope:
if scopedFullnameData.FullnameCluster != nil {
helmReleaseReq := &releaseclustermodel.VmwareTanzuManageV1alpha1ClusterNamespaceFluxcdHelmReleaseRequest{
Release: &releaseclustermodel.VmwareTanzuManageV1alpha1ClusterNamespaceFluxcdHelmReleaseRelease{
FullName: scopedFullnameData.FullnameCluster,
Meta: helmReleaseDataFromServer.meta,
Spec: helmReleaseDataFromServer.atomicSpec,
},
}
_, err = config.TMCConnection.ClusterHelmReleaseResourceService.VmwareTanzuManageV1alpha1ClusterReleaseResourceServiceUpdate(helmReleaseReq)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to update Tanzu Mission Control cluster helm release entry, name : %s", helmReleaseName))
}
}
case commonscope.ClusterGroupScope:
if scopedFullnameData.FullnameClusterGroup != nil {
helmReleaseReq := &releaseclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupNamespaceFluxcdHelmReleaseRequest{
Release: &releaseclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupNamespaceFluxcdHelmReleaseRelease{
FullName: scopedFullnameData.FullnameClusterGroup,
Meta: helmReleaseDataFromServer.meta,
Spec: &releaseclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupNamespaceFluxcdHelmReleaseSpec{
AtomicSpec: helmReleaseDataFromServer.atomicSpec,
},
},
}
_, err = config.TMCConnection.ClusterGroupHelmReleaseResourceService.VmwareTanzuManageV1alpha1ClustergroupReleaseResourceServiceUpdate(helmReleaseReq)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to update Tanzu Mission Control cluster group helm release entry, name : %s", helmReleaseName))
}
}
case commonscope.UnknownScope:
return diag.Errorf("no valid scope type block found: minimum one valid scope type block is required among: %v. Please check the schema.", strings.Join(scope.ScopesAllowed[:], `, `))
}
log.Printf("[INFO] helm release update successful")
return dataSourceHelmReleaseRead(ctx, d, m)
}
func updateCheckForMeta(d *schema.ResourceData, meta *objectmetamodel.VmwareTanzuCoreV1alpha1ObjectMeta) bool {
if !common.HasMetaChanged(d) {
return false
}
objectMeta := common.ConstructMeta(d)
if value, ok := meta.Labels[common.CreatorLabelKey]; ok {
objectMeta.Labels[common.CreatorLabelKey] = value
}
meta.Labels = objectMeta.Labels
meta.Description = objectMeta.Description
log.Printf("[INFO] updating helm release meta data")
return true
}
func updateCheckForSpec(d *schema.ResourceData, atomicSpec *releaseclustermodel.VmwareTanzuManageV1alpha1ClusterNamespaceFluxcdHelmReleaseSpec, scope commonscope.Scope) (bool, error) {
if !spec.HasSpecChanged(d) {
return false, nil
}
var helmreleaseSpec *releaseclustermodel.VmwareTanzuManageV1alpha1ClusterNamespaceFluxcdHelmReleaseSpec
switch scope {
case commonscope.ClusterScope:
specVal, err := spec.ConstructSpecForClusterScope(d)
if err != nil {
return false, err
}
helmreleaseSpec = specVal
case commonscope.ClusterGroupScope:
specVal, err := spec.ConstructSpecForClusterGroupScope(d)
if err != nil {
return false, err
}
clusterGroupScopeSpec := specVal
helmreleaseSpec = clusterGroupScopeSpec.AtomicSpec
}
atomicSpec.InlineConfiguration = helmreleaseSpec.InlineConfiguration
atomicSpec.Interval = helmreleaseSpec.Interval
atomicSpec.TargetNamespace = helmreleaseSpec.TargetNamespace
atomicSpec.ChartRef.Chart = helmreleaseSpec.ChartRef.Chart
atomicSpec.ChartRef.RepositoryName = helmreleaseSpec.ChartRef.RepositoryName
atomicSpec.ChartRef.RepositoryNamespace = helmreleaseSpec.ChartRef.RepositoryNamespace
atomicSpec.ChartRef.RepositoryType = helmreleaseSpec.ChartRef.RepositoryType
atomicSpec.ChartRef.Version = helmreleaseSpec.ChartRef.Version
log.Printf("[INFO] updating helm release spec")
return true, nil
}
func checkHelmFeature(config authctx.TanzuContext, scopedFullnameData *scope.ScopedFullname) error {
switch scopedFullnameData.Scope {
case commonscope.ClusterScope:
resp, err := config.TMCConnection.ClusterHelmResourceService.VmwareTanzuManageV1alpha1ClusterHelmResourceServiceList(
&helmclustermodel.VmwareTanzuManageV1alpha1ClusterFluxcdHelmListHelmRequestParameters{
SearchScope: &helmclustermodel.VmwareTanzuManageV1alpha1ClusterFluxcdHelmSearchScope{
ClusterName: scopedFullnameData.FullnameCluster.ClusterName,
ManagementClusterName: scopedFullnameData.FullnameCluster.ManagementClusterName,
ProvisionerName: scopedFullnameData.FullnameCluster.ProvisionerName,
},
},
)
if err != nil {
return err
}
if len(resp.Helms) == 0 {
return errors.Errorf("Tanzu mission control helm feature is disable on cluster, name: %s", scopedFullnameData.FullnameCluster.ClusterName)
}
if _, ok := resp.Helms[0].Status.Conditions[disabledKey]; ok {
return errors.Errorf("Tanzu mission control helm feature is disable on cluster, name: %s", scopedFullnameData.FullnameCluster.ClusterName)
}
case commonscope.ClusterGroupScope:
resp, err := config.TMCConnection.ClusterGroupHelmResourceService.VmwareTanzuManageV1alpha1ClustergroupHelmResourceServiceList(
&helmclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupHelmListHelmRequestParameters{
SearchScope: &helmclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupFluxcdHelmSearchScope{
ClusterGroupName: scopedFullnameData.FullnameClusterGroup.ClusterGroupName,
},
},
)
if err != nil {
return err
}
if len(resp.Helms) == 0 {
return errors.Errorf("Tanzu mission control helm feature is disable on cluster group, name: %s", scopedFullnameData.FullnameClusterGroup.ClusterGroupName)
}
if resp.Helms[0].Status.Phase == nil {
return errors.Errorf("Tanzu mission control helm feature is disable on cluster group, name: %s", scopedFullnameData.FullnameClusterGroup.ClusterGroupName)
}
}
return nil
}