File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,10 @@ import (
31
31
"k8s.io/apimachinery/pkg/util/wait"
32
32
clientset "k8s.io/client-go/kubernetes"
33
33
"k8s.io/kubectl/pkg/util/podutils"
34
+ "k8s.io/utils/ptr"
34
35
35
36
"k8s.io/kubernetes/test/e2e/framework"
36
37
e2epod "k8s.io/kubernetes/test/e2e/framework/pod"
37
- "k8s.io/utils/pointer"
38
38
39
39
"sigs.k8s.io/node-feature-discovery/test/e2e/utils"
40
40
)
@@ -428,9 +428,9 @@ func NFDTopologyUpdaterSpec(kc utils.KubeletConfig, opts ...SpecOption) *corev1.
428
428
Capabilities : & corev1.Capabilities {
429
429
Drop : []corev1.Capability {"ALL" },
430
430
},
431
- RunAsUser : pointer . Int64 (0 ),
432
- ReadOnlyRootFilesystem : pointer . Bool (true ),
433
- AllowPrivilegeEscalation : pointer . Bool (false ),
431
+ RunAsUser : ptr. To [ int64 ] (0 ),
432
+ ReadOnlyRootFilesystem : ptr. To [ bool ] (true ),
433
+ AllowPrivilegeEscalation : ptr. To [ bool ] (false ),
434
434
SeccompProfile : & corev1.SeccompProfile {
435
435
Type : corev1 .SeccompProfileTypeRuntimeDefault ,
436
436
},
You can’t perform that action at this time.
0 commit comments