-
Notifications
You must be signed in to change notification settings - Fork 303
/
helm.go
163 lines (132 loc) · 3.78 KB
/
helm.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
package tiltfile
import (
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"regexp"
"runtime"
"strings"
"github.com/ghodss/yaml"
)
// The helm template command outputs predictable yaml with a "Source:" comment,
// so take advantage of that.
const helmSeparator = "---\n"
const helmFileRepository = "file://"
var helmTestYAMLMatcher = regexp.MustCompile("^# Source: .*/tests/")
func filterHelmTestYAML(resourceBlob string) string {
result := []string{}
resources := strings.Split(resourceBlob, helmSeparator)
for _, resource := range resources {
if isHelmTestYAML(resource) {
continue
}
result = append(result, resource)
}
return strings.Join(result, helmSeparator)
}
func isHelmTestYAML(resource string) bool {
lines := strings.Split(resource, "\n")
for _, line := range lines {
if helmTestYAMLMatcher.MatchString(line) {
return true
}
}
return false
}
type helmVersion int
const (
unknownHelmVersion helmVersion = iota
helmV2
helmV3_0
helmV3_1andAbove
)
func parseVersion(versionOutput string) (helmVersion, error) {
// helm v3.3.3 throws warnings on stdout, which messes up version parsing;
// if we have multiple lines of version output, assume version info is in
// the last line (see https://github.com/tilt-dev/tilt/issues/3788)
version := versionOutput
lines := strings.Split(strings.TrimSpace(versionOutput), "\n")
if len(lines) > 1 {
version = lines[(len(lines) - 1)]
}
if strings.HasPrefix(version, "v3.0.") {
return helmV3_0, nil
} else if strings.HasPrefix(version, "v3.") {
return helmV3_1andAbove, nil
} else if strings.HasPrefix(version, "Client: v2") {
return helmV2, nil
}
return unknownHelmVersion, fmt.Errorf("could not parse Helm version from string: %q", versionOutput)
}
func isHelmInstalled() bool {
if runtime.GOOS == "windows" {
cmd := exec.Command("where", "helm.exe")
if err := cmd.Run(); err != nil {
return false
}
return true
}
cmd := exec.Command("/bin/sh", "-c", "command -v helm")
if err := cmd.Run(); err != nil {
return false
}
return true
}
func getHelmVersion() (helmVersion, error) {
if !isHelmInstalled() {
return unknownHelmVersion, unableToFindHelmErrorMessage()
}
// NOTE(dmiller): I pass `--client` here even though that doesn't do anything in Helm v3.
// In Helm v2 that causes `helm version` to not reach out to tiller. Doing so can cause the
// command to fail, even though Tilt doesn't use the server at all (it just calls
// `helm template`).
// In Helm v3, it has no effect, not even an unknown flag error.
cmd := exec.Command("helm", "version", "--client", "--short")
out, err := cmd.Output()
if err != nil {
return unknownHelmVersion, err
}
return parseVersion(string(out))
}
func unableToFindHelmErrorMessage() error {
var binaryName string
if runtime.GOOS == "windows" {
binaryName = "helm.exe"
} else {
binaryName = "helm"
}
return fmt.Errorf("Unable to find Helm installation. Make sure `%s` is on your $PATH.", binaryName)
}
func localSubchartDependenciesFromPath(chartPath string) ([]string, error) {
var deps []string
requirementsPath := filepath.Join(chartPath, "requirements.yaml")
dat, err := ioutil.ReadFile(requirementsPath)
if os.IsNotExist(err) {
return deps, nil
} else if err != nil {
return deps, err
}
return localSubchartDependencies(dat)
}
type chartDependency struct {
Repository string
}
type chartMetadata struct {
Dependencies []chartDependency
}
func localSubchartDependencies(dat []byte) ([]string, error) {
var deps []string
var metadata chartMetadata
err := yaml.Unmarshal([]byte(dat), &metadata)
if err != nil {
return deps, err
}
for _, d := range metadata.Dependencies {
if strings.HasPrefix(d.Repository, helmFileRepository) {
deps = append(deps, strings.TrimPrefix(d.Repository, helmFileRepository))
}
}
return deps, nil
}