-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmain.go
186 lines (148 loc) · 3.63 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
package main
import (
"context"
"errors"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"sort"
"strings"
"github.com/ghodss/yaml"
"github.com/open-policy-agent/opa/ast"
"github.com/open-policy-agent/opa/rego"
"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/timeconv"
)
const globalUsage = `
Checks the rendered chart templates against Open Policy Agent policies.
All policies under policies/ will be evaluated.
`
var (
flagVerbose bool
showNotes bool
)
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.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.")
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 := yaml.Marshal(map[string]interface{}{})
config := &chart.Config{Raw: string(vv), Values: map[string]*chart.Value{}}
options := chartutil.ReleaseOptions{
Name: "RELEASE",
Time: timeconv.Now(),
Namespace: "NAMESPACE",
}
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
}
sortedKeys := make([]string, 0, len(out))
for key := range out {
sortedKeys = append(sortedKeys, key)
}
sort.Strings(sortedKeys)
foundViolations := false
compiler, err := buildCopmiler(args[0] + "/" + "policies")
for _, name := range sortedKeys {
data := out[name]
fileName := filepath.Base(name)
if strings.HasSuffix(fileName, ".yaml") {
r, _ := processFile(fileName, data, compiler)
if !foundViolations && r {
foundViolations = r
}
}
}
fmt.Println("===")
if foundViolations {
fmt.Println("Result: Chart is not compliant")
} else {
fmt.Println("Result: Chart is compliant")
}
return nil
}
func processFile(fileName string, data string, compiler *ast.Compiler) (bool, error) {
fmt.Printf("Processing file %v\n", fileName)
ctx := context.Background()
var input interface{}
err := yaml.Unmarshal([]byte(data), &input)
rego := rego.New(
rego.Query("data.main.deny"),
rego.Compiler(compiler),
rego.Input(input))
rs, err := rego.Eval(ctx)
hasResults := func(expression interface{}) bool {
if v, ok := expression.([]interface{}); ok {
return len(v) > 0
}
return false
}
foundViolations := false
for _, r := range rs {
for _, e := range r.Expressions {
value := e.Value
if hasResults(value) {
foundViolations = true
fmt.Println("Violations:")
for _, v := range value.([]interface{}) {
fmt.Printf("- %v\n", v)
}
}
}
}
return foundViolations, err
}
func buildCopmiler(path string) (*ast.Compiler, error) {
files, err := ioutil.ReadDir(path)
if err != nil {
return nil, err
}
modules := map[string]*ast.Module{}
for _, file := range files {
if !strings.HasSuffix(file.Name(), ".rego") {
continue
}
out, err := ioutil.ReadFile(path + "/" + file.Name())
if err != nil {
return nil, err
}
parsed, err := ast.ParseModule(file.Name(), string(out[:]))
if err != nil {
return nil, err
}
modules[file.Name()] = parsed
}
compiler := ast.NewCompiler()
compiler.Compile(modules)
if compiler.Failed() {
panic(compiler.Errors)
}
return compiler, nil
}