Skip to content

Commit 4588f3b

Browse files
committed
sort explain output
1 parent 27e8aa4 commit 4588f3b

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

pkg/matcher/explain.go

+12-5
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ package matcher
22

33
import (
44
"fmt"
5+
collections "github.com/mattfenwick/collections/pkg"
56
"github.com/mattfenwick/cyclonus/pkg/kube"
7+
"github.com/mattfenwick/cyclonus/pkg/utils"
68
"github.com/olekukonko/tablewriter"
79
"github.com/pkg/errors"
10+
networkingv1 "k8s.io/api/networking/v1"
811
"strings"
912
)
1013

@@ -45,18 +48,22 @@ func (s *SliceBuilder) TargetsTableLines(targets []*Target, isIngress bool) {
4548
ruleType = "Egress"
4649
}
4750
for _, target := range targets {
48-
var sourceRules []string
49-
for _, sr := range target.SourceRules {
50-
sourceRules = append(sourceRules, fmt.Sprintf("%s/%s", sr.Namespace, sr.Name))
51-
}
51+
sourceRules := collections.SortBy(collections.MapSlice(
52+
func(sr *networkingv1.NetworkPolicy) string {
53+
return fmt.Sprintf("%s/%s", sr.Namespace, sr.Name)
54+
}, target.SourceRules),
55+
collections.OrderedCompare[string])
5256
targetString := fmt.Sprintf("namespace: %s\n%s", target.Namespace, kube.LabelSelectorTableLines(target.PodSelector))
5357
rules := strings.Join(sourceRules, "\n")
5458
s.Prefix = []string{ruleType, targetString, rules}
5559

5660
if len(target.Peers) == 0 {
5761
s.Append("no pods, no ips", "no ports, no protocols")
5862
} else {
59-
for _, peer := range target.Peers {
63+
comparator := func(a PeerMatcher, b PeerMatcher) collections.Ordering {
64+
return collections.String(utils.DumpJSON(a)).Compare(collections.String(utils.DumpJSON(b)))
65+
}
66+
for _, peer := range collections.SortBy(target.Peers, comparator) {
6067
switch a := peer.(type) {
6168
case *AllPeersMatcher:
6269
s.Append("all pods, all ips", "all ports, all protocols")

0 commit comments

Comments
 (0)