File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -3930,12 +3930,14 @@ func TestTopologySpreadConstraints(t *testing.T) {
3930
3930
3931
3931
s , err := cluster .generateStatefulSet (& pg .Spec )
3932
3932
assert .NoError (t , err )
3933
- assert .Contains (t , s .Spec .Template .Spec .TopologySpreadConstraints , v1.TopologySpreadConstraint {
3934
- MaxSkew : int32 (1 ),
3935
- TopologyKey : "topology.kubernetes.io/zone" ,
3936
- WhenUnsatisfiable : v1 .DoNotSchedule ,
3937
- LabelSelector : & metav1.LabelSelector {
3938
- MatchLabels : cluster .labelsSet (true ),
3933
+ assert .Contains (t , s .Spec .Template .Spec .TopologySpreadConstraints , []v1.TopologySpreadConstraint {
3934
+ {
3935
+ MaxSkew : int32 (1 ),
3936
+ TopologyKey : "topology.kubernetes.io/zone" ,
3937
+ WhenUnsatisfiable : v1 .DoNotSchedule ,
3938
+ LabelSelector : & metav1.LabelSelector {
3939
+ MatchLabels : cluster .labelsSet (true ),
3940
+ },
3939
3941
},
3940
3942
})
3941
3943
}
You can’t perform that action at this time.
0 commit comments