We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac05e1a commit 9fe18bfCopy full SHA for 9fe18bf
pkg/apis/core/fuzzer/fuzzer.go
@@ -31,7 +31,7 @@ import (
31
runtimeserializer "k8s.io/apimachinery/pkg/runtime/serializer"
32
"k8s.io/apimachinery/pkg/util/intstr"
33
"k8s.io/kubernetes/pkg/apis/core"
34
- utilpointer "k8s.io/utils/pointer"
+ "k8s.io/utils/ptr"
35
)
36
37
// Funcs returns the fuzzer functions for the core group.
@@ -528,7 +528,7 @@ var Funcs = func(codecs runtimeserializer.CodecFactory) []interface{} {
528
ss.SessionAffinityConfig = nil
529
}
530
if ss.AllocateLoadBalancerNodePorts == nil {
531
- ss.AllocateLoadBalancerNodePorts = utilpointer.Bool(true)
+ ss.AllocateLoadBalancerNodePorts = ptr.To(true)
532
533
},
534
func(s *core.NodeStatus, c randfill.Continue) {
0 commit comments