@@ -2,8 +2,8 @@ package kube
2
2
3
3
import (
4
4
"fmt"
5
- collections "github.com/mattfenwick/collections/pkg"
6
5
"github.com/mattfenwick/collections/pkg/builtins"
6
+ "github.com/mattfenwick/collections/pkg/slices"
7
7
"github.com/mattfenwick/cyclonus/pkg/utils"
8
8
"golang.org/x/exp/maps"
9
9
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
@@ -93,8 +93,8 @@ func IsLabelSelectorEmpty(l metav1.LabelSelector) bool {
93
93
// SerializeLabelSelector deterministically converts a metav1.LabelSelector
94
94
// into a string
95
95
func SerializeLabelSelector (ls metav1.LabelSelector ) string {
96
- labelKeys := builtins . Sort ( maps .Keys (ls .MatchLabels ))
97
- keyVals := collections . MapSlice (func (key string ) string {
96
+ labelKeys := slices . SortBy ( builtins . CompareOrdered [ string ], maps .Keys (ls .MatchLabels ))
97
+ keyVals := slices . Map (func (key string ) string {
98
98
return fmt .Sprintf ("%s: %s" , key , ls .MatchLabels [key ])
99
99
}, labelKeys )
100
100
// this looks weird -- we're using an array to make the order deterministic
@@ -108,16 +108,19 @@ func LabelSelectorTableLines(selector metav1.LabelSelector) string {
108
108
var lines []string
109
109
if len (selector .MatchLabels ) > 0 {
110
110
lines = append (lines , "Match labels:" )
111
- for _ , key := range builtins . Sort ( maps .Keys (selector .MatchLabels )) {
111
+ for _ , key := range slices . SortBy ( builtins . CompareOrdered [ string ], maps .Keys (selector .MatchLabels )) {
112
112
val := selector .MatchLabels [key ]
113
113
lines = append (lines , fmt .Sprintf (" %s: %s" , key , val ))
114
114
}
115
115
}
116
116
if len (selector .MatchExpressions ) > 0 {
117
117
lines = append (lines , "Match expressions:" )
118
- sortedMatchExpressions := builtins .SortOn (selector .MatchExpressions , func (l metav1.LabelSelectorRequirement ) string { return l .Key })
118
+ sortedMatchExpressions := slices .SortOnBy (
119
+ func (l metav1.LabelSelectorRequirement ) string { return l .Key },
120
+ builtins .CompareOrdered [string ],
121
+ selector .MatchExpressions )
119
122
for _ , exp := range sortedMatchExpressions {
120
- lines = append (lines , fmt .Sprintf (" %s %s %+v" , exp .Key , exp .Operator , builtins . Sort ( exp .Values )))
123
+ lines = append (lines , fmt .Sprintf (" %s %s %+v" , exp .Key , exp .Operator , slices . SortBy ( builtins . CompareOrdered [ string ], exp .Values )))
121
124
}
122
125
}
123
126
return strings .Join (lines , "\n " )
0 commit comments