File tree 5 files changed +10
-13
lines changed
5 files changed +10
-13
lines changed Original file line number Diff line number Diff line change 5
5
require (
6
6
github.com/go-resty/resty/v2 v2.5.0
7
7
github.com/jstemmer/go-junit-report v0.9.1
8
- github.com/mattfenwick/collections v0.1.6
8
+ github.com/mattfenwick/collections v0.1.7
9
9
github.com/olekukonko/tablewriter v0.0.4
10
10
github.com/onsi/ginkgo/v2 v2.1.4
11
11
github.com/onsi/gomega v1.19.0
Original file line number Diff line number Diff line change @@ -241,8 +241,8 @@ github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN
241
241
github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e /go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc =
242
242
github.com/mailru/easyjson v0.7.6 h1:8yTIVnZgCoiM1TgqoeTl+LfU5Jg6/xL3QhGQnimLYnA =
243
243
github.com/mailru/easyjson v0.7.6 /go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc =
244
- github.com/mattfenwick/collections v0.1.6 h1:rbip28GALt86KwuhsN+7jy92rtVW7A4HScH35fCL2Io =
245
- github.com/mattfenwick/collections v0.1.6 /go.mod h1:6JmZGWNsbA4g6OzJQGAOTalNWMPghEOl1q4abMZAJSQ =
244
+ github.com/mattfenwick/collections v0.1.7 h1:92ehnds2KGUsHm+kvgqH8n8QdDXRMchpw/HvEeI1hx4 =
245
+ github.com/mattfenwick/collections v0.1.7 /go.mod h1:6JmZGWNsbA4g6OzJQGAOTalNWMPghEOl1q4abMZAJSQ =
246
246
github.com/mattn/go-runewidth v0.0.7 h1:Ei8KR0497xHyKJPAv59M1dkC+rOZCMBJ+t3fZ+twI54 =
247
247
github.com/mattn/go-runewidth v0.0.7 /go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI =
248
248
github.com/matttproud/golang_protobuf_extensions v1.0.1 /go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0 =
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package cli
2
2
3
3
import (
4
4
"fmt"
5
- collections "github.com/mattfenwick/collections/pkg"
5
+ "github.com/mattfenwick/collections/pkg/set "
6
6
"github.com/mattfenwick/cyclonus/pkg/connectivity/probe"
7
7
"github.com/mattfenwick/cyclonus/pkg/generator"
8
8
"github.com/mattfenwick/cyclonus/pkg/linter"
@@ -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 , collections .NewSet [linter.Check ](nil ))
164
+ warnings := linter .Lint (kubePolicies , set .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 1
1
package generator
2
2
3
3
import (
4
+ "github.com/mattfenwick/collections/pkg/slice"
4
5
"github.com/pkg/errors"
6
+ "golang.org/x/exp/maps"
5
7
"sort"
6
8
"strings"
7
9
)
@@ -234,12 +236,7 @@ func (s StringSet) GroupTags() map[string][]string {
234
236
}
235
237
236
238
func (s StringSet ) Keys () []string {
237
- var stringSlice []string
238
- for k := range s {
239
- stringSlice = append (stringSlice , k )
240
- }
241
- sort .Strings (stringSlice )
242
- return stringSlice
239
+ return slice .Sort (maps .Keys (s ))
243
240
}
244
241
245
242
func (s StringSet ) ContainsAny (stringSlice []string ) bool {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package linter
2
2
3
3
import (
4
4
"fmt"
5
- collections "github.com/mattfenwick/collections/pkg"
5
+ "github.com/mattfenwick/collections/pkg/set "
6
6
"github.com/mattfenwick/collections/pkg/slice"
7
7
"github.com/mattfenwick/cyclonus/pkg/matcher"
8
8
"github.com/mattfenwick/cyclonus/pkg/utils"
@@ -130,7 +130,7 @@ func WarningsTable(warnings []Warning) string {
130
130
return str .String ()
131
131
}
132
132
133
- func Lint (kubePolicies []* networkingv1.NetworkPolicy , skip * collections .Set [Check , Check ]) []Warning {
133
+ func Lint (kubePolicies []* networkingv1.NetworkPolicy , skip * set .Set [Check ]) []Warning {
134
134
policies := matcher .BuildNetworkPolicies (false , kubePolicies )
135
135
warnings := append (LintSourcePolicies (kubePolicies ), LintResolvedPolicies (policies )... )
136
136
You can’t perform that action at this time.
0 commit comments