File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ func ExplainPolicies(explainedPolicies *matcher.Policy) {
161
161
}
162
162
163
163
func Lint (kubePolicies []* networkingv1.NetworkPolicy ) {
164
- warnings := linter .Lint (kubePolicies , map [linter.Check ]bool {} )
164
+ warnings := linter .Lint (kubePolicies , collections. NewSet [linter.Check ]( nil ) )
165
165
fmt .Println (linter .WarningsTable (warnings ))
166
166
}
167
167
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package linter
2
2
3
3
import (
4
4
"fmt"
5
+ collections "github.com/mattfenwick/collections/pkg"
5
6
"github.com/mattfenwick/cyclonus/pkg/matcher"
6
7
"github.com/mattfenwick/cyclonus/pkg/utils"
7
8
"github.com/olekukonko/tablewriter"
@@ -43,6 +44,11 @@ const (
43
44
// TODO add check that rule is unnecessary b/c another rule exactly supercedes it
44
45
)
45
46
47
+ func (a Check ) Equal (b Check ) bool {
48
+ // TODO why is this necessary? why can't we use existing String implementation?
49
+ return a == b
50
+ }
51
+
46
52
type Warning struct {
47
53
Check Check
48
54
Target * matcher.Target
@@ -76,15 +82,15 @@ func WarningsTable(warnings []*Warning) string {
76
82
return str .String ()
77
83
}
78
84
79
- func Lint (kubePolicies []* networkingv1.NetworkPolicy , skip map [Check ]bool ) []* Warning {
85
+ func Lint (kubePolicies []* networkingv1.NetworkPolicy , skip * collections. Set [Check ]) []* Warning {
80
86
policies := matcher .BuildNetworkPolicies (false , kubePolicies )
81
87
warnings := append (LintSourcePolicies (kubePolicies ), LintResolvedPolicies (policies )... )
82
88
83
89
// TODO do some stuff with comparing simplified to non-simplified policies
84
90
85
91
var filtered []* Warning
86
92
for _ , warning := range warnings {
87
- if _ , ok := skip [ warning .Check ]; ! ok {
93
+ if ! skip . Contains ( warning .Check ) {
88
94
filtered = append (filtered , warning )
89
95
}
90
96
}
You can’t perform that action at this time.
0 commit comments