-
Notifications
You must be signed in to change notification settings - Fork 371
/
data_template.go
645 lines (590 loc) · 19.5 KB
/
data_template.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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package helm
import (
"bytes"
"context"
"fmt"
"os"
"path/filepath"
"regexp"
"sort"
"strings"
"time"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
"helm.sh/helm/v3/pkg/action"
"helm.sh/helm/v3/pkg/chart/loader"
"helm.sh/helm/v3/pkg/chartutil"
"helm.sh/helm/v3/pkg/release"
"helm.sh/helm/v3/pkg/releaseutil"
)
// defaultTemplateAttributes template attribute values
var defaultTemplateAttributes = map[string]interface{}{
"validate": false,
"include_crds": false,
"is_upgrade": false,
"skip_tests": false,
}
func dataTemplate() *schema.Resource {
return &schema.Resource{
ReadContext: dataTemplateRead,
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: "Release name.",
},
"repository": {
Type: schema.TypeString,
Optional: true,
Description: "Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.",
},
"repository_key_file": {
Type: schema.TypeString,
Optional: true,
Description: "The repositories cert key file",
},
"repository_cert_file": {
Type: schema.TypeString,
Optional: true,
Description: "The repositories cert file",
},
"repository_ca_file": {
Type: schema.TypeString,
Optional: true,
Description: "The Repositories CA File",
},
"repository_username": {
Type: schema.TypeString,
Optional: true,
Description: "Username for HTTP basic authentication",
},
"repository_password": {
Type: schema.TypeString,
Optional: true,
Sensitive: true,
Description: "Password for HTTP basic authentication",
},
"pass_credentials": {
Type: schema.TypeBool,
Optional: true,
Description: "Pass credentials to all domains. Defaults to `false`.",
},
"chart": {
Type: schema.TypeString,
Required: true,
Description: "Chart name to be installed. A path may be used.",
},
"version": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Description: "Specify the exact chart version to install. If this is not specified, the latest version is installed.",
},
"devel": {
Type: schema.TypeBool,
Optional: true,
Description: "Use chart development versions, too. Equivalent to version '>0.0.0-0'. If `version` is set, this is ignored",
// Suppress changes of this attribute if `version` is set
DiffSuppressFunc: func(k, old, new string, d *schema.ResourceData) bool {
return d.Get("version").(string) != ""
},
},
"values": {
Type: schema.TypeList,
Optional: true,
Description: "List of values in raw yaml format to pass to helm.",
Elem: &schema.Schema{Type: schema.TypeString},
},
"set": {
Type: schema.TypeSet,
Optional: true,
Description: "Custom values to be merged with the values.",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
},
"value": {
Type: schema.TypeString,
Required: true,
},
"type": {
Type: schema.TypeString,
Optional: true,
// TODO: use ValidateDiagFunc once an SDK v2 version of StringInSlice exists.
// https://github.com/hashicorp/terraform-plugin-sdk/issues/534
ValidateFunc: validation.StringInSlice([]string{
"auto", "string",
}, false),
},
},
},
},
"set_list": {
Type: schema.TypeList,
Optional: true,
Description: "Custom list values to be merged with the values.",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
},
"value": {
Type: schema.TypeList,
Required: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
},
},
},
"set_sensitive": {
Type: schema.TypeSet,
Optional: true,
Description: "Custom sensitive values to be merged with the values.",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
},
"value": {
Type: schema.TypeString,
Required: true,
Sensitive: true,
},
"type": {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.StringInSlice([]string{
"auto", "string",
}, false),
},
},
},
},
"set_string": {
Type: schema.TypeSet,
Optional: true,
Description: "Custom string values to be merged with the values.",
Deprecated: "This argument is deprecated and will be removed in the next major" +
" version. Use `set` argument with `type` equals to `string`",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
},
"value": {
Type: schema.TypeString,
Required: true,
},
},
},
},
"namespace": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Description: "Namespace to install the release into. Defaults to `default`.",
DefaultFunc: schema.EnvDefaultFunc("HELM_NAMESPACE", "default"),
},
"verify": {
Type: schema.TypeBool,
Optional: true,
Default: defaultAttributes["verify"],
Description: "Verify the package before installing it.Defaults to `false`.",
},
"keyring": {
Type: schema.TypeString,
Optional: true,
Default: os.ExpandEnv("$HOME/.gnupg/pubring.gpg"),
Description: "Location of public keys used for verification. Used only if `verify` is true. Defaults to `/.gnupg/pubring.gpg` in the location set by `home`.",
// Suppress changes of this attribute if `verify` is false
DiffSuppressFunc: func(k, old, new string, d *schema.ResourceData) bool {
return !d.Get("verify").(bool)
},
},
"timeout": {
Type: schema.TypeInt,
Optional: true,
Default: defaultAttributes["timeout"],
Description: "Time in seconds to wait for any individual kubernetes operation. Defaults to `300` seconds.",
},
"disable_webhooks": {
Type: schema.TypeBool,
Optional: true,
Default: defaultAttributes["disable_webhooks"],
Description: "Prevent hooks from running.Defaults to `300` seconds.",
},
"reuse_values": {
Type: schema.TypeBool,
Optional: true,
Description: "When upgrading, reuse the last release's values and merge in any overrides. If 'reset_values' is specified, this is ignored. Defaults to `false`. ",
Default: defaultAttributes["reuse_values"],
},
"reset_values": {
Type: schema.TypeBool,
Optional: true,
Description: "When upgrading, reset the values to the ones built into the chart.Defaults to `false`. ",
Default: defaultAttributes["reset_values"],
},
"atomic": {
Type: schema.TypeBool,
Optional: true,
Default: defaultAttributes["atomic"],
Description: "If set, installation process purges chart on fail. The wait flag will be set automatically if atomic is used. Defaults to `false`.",
},
"skip_crds": {
Type: schema.TypeBool,
Optional: true,
Default: defaultAttributes["skip_crds"],
Description: "If set, no CRDs will be installed. By default, CRDs are installed if not already present. Defaults to `false`.",
},
"skip_tests": {
Type: schema.TypeBool,
Optional: true,
Default: defaultAttributes["skip_tests"],
Description: "If set, tests will not be rendered. By default, tests are rendered. Defaults to `false`.",
},
"render_subchart_notes": {
Type: schema.TypeBool,
Optional: true,
Default: defaultAttributes["render_subchart_notes"],
Description: "If set, render subchart notes along with the parent. Defaults to `true`.",
},
"disable_openapi_validation": {
Type: schema.TypeBool,
Optional: true,
Default: defaultAttributes["disable_openapi_validation"],
Description: "If set, the installation process will not validate rendered templates against the Kubernetes OpenAPI Schema.Defaults to `false`.",
},
"wait": {
Type: schema.TypeBool,
Optional: true,
Default: defaultAttributes["wait"],
Description: "Will wait until all resources are in a ready state before marking the release as successful.Defaults to `true`.",
},
"dependency_update": {
Type: schema.TypeBool,
Optional: true,
Default: defaultAttributes["dependency_update"],
Description: "Run helm dependency update before installing the chart. Defaults to `false`.",
},
"replace": {
Type: schema.TypeBool,
Optional: true,
Default: defaultAttributes["replace"],
Description: "Re-use the given name, even if that name is already used. This is unsafe in production. Defaults to `false`.",
},
"description": {
Type: schema.TypeString,
Optional: true,
Description: "Add a custom description",
DiffSuppressFunc: func(k, old, new string, d *schema.ResourceData) bool {
return new == ""
},
},
"create_namespace": {
Type: schema.TypeBool,
Optional: true,
Default: defaultAttributes["create_namespace"],
Description: "Create the namespace if it does not exist. Defaults to `false`.",
},
"postrender": {
Type: schema.TypeList,
MaxItems: 1,
Optional: true,
Description: "Postrender command configuration.",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"binary_path": {
Type: schema.TypeString,
Required: true,
Description: "The command binary path.",
},
},
},
},
"api_versions": {
Type: schema.TypeList,
Optional: true,
Description: "Kubernetes api versions used for Capabilities.APIVersions",
Elem: &schema.Schema{Type: schema.TypeString},
},
"include_crds": {
Type: schema.TypeBool,
Optional: true,
Default: defaultTemplateAttributes["include_crds"],
Description: "Include CRDs in the templated output",
},
"is_upgrade": {
Type: schema.TypeBool,
Optional: true,
Default: defaultTemplateAttributes["is_upgrade"],
Description: "Set .Release.IsUpgrade instead of .Release.IsInstall",
},
"show_only": {
Type: schema.TypeList,
Optional: true,
Description: "Only show manifests rendered from the given templates",
Elem: &schema.Schema{Type: schema.TypeString},
},
"validate": {
Type: schema.TypeBool,
Optional: true,
Default: defaultTemplateAttributes["validate"],
Description: "Validate your manifests against the Kubernetes cluster you are currently pointing at. This is the same validation performed on an install",
},
"manifests": {
Type: schema.TypeMap,
Optional: true,
Computed: true,
Description: "Map of rendered chart templates indexed by the template name.",
Elem: &schema.Schema{
Type: schema.TypeString,
},
},
"crds": {
Type: schema.TypeList,
Optional: true,
Computed: true,
Description: "List of rendered CRDs from the chart.",
Elem: &schema.Schema{
Type: schema.TypeString,
},
},
"manifest": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Description: "Concatenated rendered chart templates. This corresponds to the output of the `helm template` command.",
},
"notes": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Description: "Rendered notes if the chart contains a `NOTES.txt`.",
},
"kube_version": {
Type: schema.TypeString,
Optional: true,
Description: "Kubernetes version used for Capabilities.KubeVersion",
},
},
}
}
func dataTemplateRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
logID := fmt.Sprintf("[dataTemplateRead: %s]", d.Get("name").(string))
debug("%s Started", logID)
m := meta.(*Meta)
name := d.Get("name").(string)
n := d.Get("namespace").(string)
var apiVersions []string
if apiVersionsAttr, ok := d.GetOk("api_versions"); ok {
apiVersionsValues := apiVersionsAttr.([]interface{})
for _, apiVersion := range apiVersionsValues {
apiVersions = append(apiVersions, apiVersion.(string))
}
}
var showFiles []string
if showOnlyAttr, ok := d.GetOk("show_only"); ok {
showOnlyAttrValue := showOnlyAttr.([]interface{})
for _, showFile := range showOnlyAttrValue {
if s, ok := showFile.(string); ok && len(s) > 0 {
showFiles = append(showFiles, s)
}
}
}
debug("%s Getting Config", logID)
actionConfig, err := m.GetHelmConfiguration(n)
if err != nil {
return diag.FromErr(err)
}
err = OCIRegistryLogin(actionConfig, d, m)
if err != nil {
return diag.FromErr(err)
}
client := action.NewInstall(actionConfig)
cpo, chartName, err := chartPathOptions(d, m, &client.ChartPathOptions)
if err != nil {
return diag.FromErr(err)
}
debug("%s Getting chart", logID)
c, path, err := getChart(d, m, chartName, cpo)
if err != nil {
return diag.FromErr(err)
}
// check and update the chart's dependencies if needed
updated, err := checkChartDependencies(d, c, path, m)
if err != nil {
return diag.FromErr(err)
} else if updated {
// load the chart again if its dependencies have been updated
c, err = loader.Load(path)
if err != nil {
return diag.FromErr(err)
}
}
debug("%s Preparing for installation", logID)
values, err := getValues(d)
if err != nil {
return diag.FromErr(err)
}
err = isChartInstallable(c)
if err != nil {
return diag.FromErr(err)
}
client.ChartPathOptions = *cpo
client.ClientOnly = false
client.DryRun = true
client.DisableHooks = d.Get("disable_webhooks").(bool)
client.Wait = d.Get("wait").(bool)
client.Devel = d.Get("devel").(bool)
client.DependencyUpdate = d.Get("dependency_update").(bool)
client.Timeout = time.Duration(d.Get("timeout").(int)) * time.Second
client.Namespace = d.Get("namespace").(string)
client.ReleaseName = d.Get("name").(string)
client.GenerateName = false
client.NameTemplate = ""
client.OutputDir = ""
client.Atomic = d.Get("atomic").(bool)
client.SkipCRDs = d.Get("skip_crds").(bool)
client.SubNotes = d.Get("render_subchart_notes").(bool)
client.DisableOpenAPIValidation = d.Get("disable_openapi_validation").(bool)
client.Replace = d.Get("replace").(bool)
client.Description = d.Get("description").(string)
client.CreateNamespace = d.Get("create_namespace").(bool)
if ver := d.Get("kube_version").(string); ver != "" {
parsedVer, err := chartutil.ParseKubeVersion(ver)
if err != nil {
return diag.FromErr(fmt.Errorf("couldn't parse string %q into kube-version", ver))
}
client.KubeVersion = parsedVer
}
// The following source has been adapted from the source of the helm template command
// https://github.com/helm/helm/blob/v3.5.3/cmd/helm/template.go#L67
client.DryRun = true
// NOTE Do not set fixed release name as client.ReleaseName like in helm template command
client.Replace = true // Skip the name check
client.ClientOnly = !d.Get("validate").(bool)
client.APIVersions = chartutil.VersionSet(apiVersions)
client.IncludeCRDs = d.Get("include_crds").(bool)
skipTests := d.Get("skip_tests").(bool)
debug("%s Rendering Chart", logID)
rel, err := client.Run(c, values)
if err != nil {
return diag.FromErr(err)
}
var manifests bytes.Buffer
fmt.Fprintln(&manifests, strings.TrimSpace(rel.Manifest))
if !client.DisableHooks {
for _, m := range rel.Hooks {
if skipTests && isTestHook(m) {
continue
}
fmt.Fprintf(&manifests, "---\n# Source: %s\n%s\n", m.Path, m.Manifest)
}
}
// Difference to the implementation of helm template in newTemplateCmd:
// Independent of templates, names of the charts templates are always resolved from the manifests
// to be able to populate the keys in the manifests computed attribute.
var manifestsToRender []string
splitManifests := releaseutil.SplitManifests(manifests.String())
manifestsKeys := make([]string, 0, len(splitManifests))
for k := range splitManifests {
manifestsKeys = append(manifestsKeys, k)
}
sort.Sort(releaseutil.BySplitManifestsOrder(manifestsKeys))
var chartCRDs []string
for _, crd := range rel.Chart.CRDObjects() {
chartCRDs = append(chartCRDs, string(crd.File.Data))
}
// Mapping of manifest key to manifest template name
manifestNamesByKey := make(map[string]string, len(manifestsKeys))
manifestNameRegex := regexp.MustCompile("# Source: [^/]+/(.+)")
for _, manifestKey := range manifestsKeys {
manifest := splitManifests[manifestKey]
submatch := manifestNameRegex.FindStringSubmatch(manifest)
if len(submatch) == 0 {
continue
}
manifestName := submatch[1]
manifestNamesByKey[manifestKey] = manifestName
}
// if we have a list of files to render, then check that each of the
// provided files exists in the chart.
if len(showFiles) > 0 {
for _, f := range showFiles {
missing := true
// Use linux-style filepath separators to unify user's input path
f = filepath.ToSlash(f)
for manifestKey, manifestName := range manifestNamesByKey {
// manifest.Name is rendered using linux-style filepath separators on Windows as
// well as macOS/linux.
manifestPathSplit := strings.Split(manifestName, "/")
// manifest.Path is connected using linux-style filepath separators on Windows as
// well as macOS/linux
manifestPath := strings.Join(manifestPathSplit, "/")
// if the filepath provided matches a manifest path in the
// chart, render that manifest
if matched, _ := filepath.Match(f, manifestPath); !matched {
continue
}
manifestsToRender = append(manifestsToRender, manifestKey)
missing = false
}
if missing {
return diag.Errorf("could not find template %q in chart", f)
}
}
} else {
manifestsToRender = manifestsKeys
}
// We need to sort the manifests so the order stays stable when they are
// concatenated back together in the computedManifests map
sort.Strings(manifestsToRender)
// Map from rendered manifests to data source output
computedManifests := make(map[string]string, 0)
computedManifest := &strings.Builder{}
for _, manifestKey := range manifestsToRender {
manifest := splitManifests[manifestKey]
manifestName := manifestNamesByKey[manifestKey]
// Manifests
computedManifests[manifestName] = fmt.Sprintf("%s---\n%s\n", computedManifests[manifestName], manifest)
// Manifest bundle
fmt.Fprintf(computedManifest, "---\n%s\n", manifest)
}
computedNotes := rel.Info.Notes
d.SetId(name)
err = d.Set("crds", chartCRDs)
if err != nil {
return diag.FromErr(err)
}
err = d.Set("manifests", computedManifests)
if err != nil {
return diag.FromErr(err)
}
err = d.Set("manifest", computedManifest.String())
if err != nil {
return diag.FromErr(err)
}
err = d.Set("notes", computedNotes)
if err != nil {
return diag.FromErr(err)
}
return nil
}
func isTestHook(h *release.Hook) bool {
for _, e := range h.Events {
if e == release.HookTest {
return true
}
}
return false
}