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