-
Notifications
You must be signed in to change notification settings - Fork 29
/
main.go
229 lines (194 loc) · 5.19 KB
/
main.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
package main
import (
"errors"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"sort"
"strings"
"github.com/ghodss/yaml"
"github.com/spf13/cobra"
"k8s.io/helm/pkg/chartutil"
"k8s.io/helm/pkg/engine"
"k8s.io/helm/pkg/proto/hapi/chart"
"k8s.io/helm/pkg/strvals"
"k8s.io/helm/pkg/timeconv"
)
const globalUsage = `
Render chart templates locally and display the output.
This does not require Tiller. However, any values that would normally be
looked up or retrieved in-cluster will be faked locally. Additionally, none
of the server-side testing of chart validity (e.g. whether an API is supported)
is done.
To render just one template in a chart, use '-x':
$ helm template mychart -x mychart/templates/deployment.yaml
`
var (
setVals []string
valsFiles valueFiles
flagVerbose bool
showNotes bool
releaseName string
namespace string
renderFiles []string
)
var version = "DEV"
func main() {
cmd := &cobra.Command{
Use: "template [flags] CHART",
Short: fmt.Sprintf("locally render templates (helm-template %s)", version),
RunE: run,
}
f := cmd.Flags()
f.StringArrayVar(&setVals, "set", []string{}, "set values on the command line. See 'helm install -h'")
f.VarP(&valsFiles, "values", "f", "specify one or more YAML files of values")
f.BoolVarP(&flagVerbose, "verbose", "v", false, "show the computed YAML values as well.")
f.BoolVar(&showNotes, "notes", false, "show the computed NOTES.txt file as well.")
f.StringVarP(&releaseName, "release", "r", "RELEASE-NAME", "release name")
f.StringVarP(&namespace, "namespace", "n", "NAMESPACE", "namespace")
f.StringArrayVarP(&renderFiles, "execute", "x", []string{}, "only execute the given templates.")
if err := cmd.Execute(); err != nil {
os.Exit(1)
}
}
func run(cmd *cobra.Command, args []string) error {
if len(args) < 1 {
return errors.New("chart is required")
}
c, err := chartutil.Load(args[0])
if err != nil {
return err
}
vv, err := vals()
if err != nil {
return err
}
config := &chart.Config{Raw: string(vv), Values: map[string]*chart.Value{}}
if flagVerbose {
fmt.Println("---\n# merged values")
fmt.Println(string(vv))
}
options := chartutil.ReleaseOptions{
Name: releaseName,
Time: timeconv.Now(),
Namespace: namespace,
//Revision: 1,
//IsInstall: true,
}
// Set up engine.
renderer := engine.New()
vals, err := chartutil.ToRenderValues(c, config, options)
if err != nil {
return err
}
out, err := renderer.Render(c, vals)
if err != nil {
return err
}
in := func(needle string, haystack []string) bool {
for _, h := range haystack {
if h == needle {
return true
}
}
return false
}
sortedKeys := make([]string, 0, len(out))
for key := range out {
sortedKeys = append(sortedKeys, key)
}
sort.Strings(sortedKeys)
// If renderFiles is set, we ONLY print those.
if len(renderFiles) > 0 {
for _, name := range sortedKeys {
data := out[name]
if in(name, renderFiles) {
fmt.Printf("---\n# Source: %s\n", name)
fmt.Println(data)
}
}
return nil
}
for _, name := range sortedKeys {
data := out[name]
b := filepath.Base(name)
if !showNotes && b == "NOTES.txt" {
continue
}
if strings.HasPrefix(b, "_") {
continue
}
fmt.Printf("---\n# Source: %s\n", name)
fmt.Println(data)
}
return nil
}
// liberally borrows from Helm
func vals() ([]byte, error) {
base := map[string]interface{}{}
// User specified a values files via -f/--values
for _, filePath := range valsFiles {
currentMap := map[string]interface{}{}
bytes, err := ioutil.ReadFile(filePath)
if err != nil {
return []byte{}, err
}
if err := yaml.Unmarshal(bytes, ¤tMap); err != nil {
return []byte{}, fmt.Errorf("failed to parse %s: %s", filePath, err)
}
// Merge with the previous map
base = mergeValues(base, currentMap)
}
// User specified a value via --set
for _, value := range setVals {
if err := strvals.ParseInto(value, base); err != nil {
return []byte{}, fmt.Errorf("failed parsing --set data: %s", err)
}
}
return yaml.Marshal(base)
}
// Copied from Helm.
func mergeValues(dest map[string]interface{}, src map[string]interface{}) map[string]interface{} {
for k, v := range src {
// If the key doesn't exist already, then just set the key to that value
if _, exists := dest[k]; !exists {
dest[k] = v
continue
}
nextMap, ok := v.(map[string]interface{})
// If it isn't another map, overwrite the value
if !ok {
dest[k] = v
continue
}
// If the key doesn't exist already, then just set the key to that value
if _, exists := dest[k]; !exists {
dest[k] = nextMap
continue
}
// Edge case: If the key exists in the destination, but isn't a map
destMap, isMap := dest[k].(map[string]interface{})
// If the source map has a map for this key, prefer it
if !isMap {
dest[k] = v
continue
}
// If we got to this point, it is a map in both, so merge them
dest[k] = mergeValues(destMap, nextMap)
}
return dest
}
type valueFiles []string
func (v *valueFiles) String() string {
return fmt.Sprint(*v)
}
func (v *valueFiles) Type() string {
return "valueFiles"
}
func (v *valueFiles) Set(value string) error {
for _, filePath := range strings.Split(value, ",") {
*v = append(*v, filePath)
}
return nil
}