@@ -2,9 +2,12 @@ package matcher
2
2
3
3
import (
4
4
"fmt"
5
+ collections "github.com/mattfenwick/collections/pkg"
5
6
"github.com/mattfenwick/cyclonus/pkg/kube"
7
+ "github.com/mattfenwick/cyclonus/pkg/utils"
6
8
"github.com/olekukonko/tablewriter"
7
9
"github.com/pkg/errors"
10
+ networkingv1 "k8s.io/api/networking/v1"
8
11
"strings"
9
12
)
10
13
@@ -45,18 +48,22 @@ func (s *SliceBuilder) TargetsTableLines(targets []*Target, isIngress bool) {
45
48
ruleType = "Egress"
46
49
}
47
50
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 ])
52
56
targetString := fmt .Sprintf ("namespace: %s\n %s" , target .Namespace , kube .LabelSelectorTableLines (target .PodSelector ))
53
57
rules := strings .Join (sourceRules , "\n " )
54
58
s .Prefix = []string {ruleType , targetString , rules }
55
59
56
60
if len (target .Peers ) == 0 {
57
61
s .Append ("no pods, no ips" , "no ports, no protocols" )
58
62
} 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 ) {
60
67
switch a := peer .(type ) {
61
68
case * AllPeersMatcher :
62
69
s .Append ("all pods, all ips" , "all ports, all protocols" )
0 commit comments