1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-03-14 20:56:42 +00:00

Merge pull request #1003 from marquiz/devel/e2e-host-usr-src

test/e2e: drop host-usr-src mount
This commit is contained in:
Kubernetes Prow Robot 2022-12-19 02:35:45 -08:00 committed by GitHub
commit 4635b99832
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -296,11 +296,6 @@ func nfdWorkerSpec(opts ...SpecOption) *corev1.PodSpec {
MountPath: "/host-usr/lib",
ReadOnly: true,
},
{
Name: "host-usr-src",
MountPath: "/host-usr/src",
ReadOnly: true,
},
},
},
},
@ -343,15 +338,6 @@ func nfdWorkerSpec(opts ...SpecOption) *corev1.PodSpec {
},
},
},
{
Name: "host-usr-src",
VolumeSource: corev1.VolumeSource{
HostPath: &corev1.HostPathVolumeSource{
Path: "/usr/src",
Type: newHostPathType(corev1.HostPathDirectory),
},
},
},
},
}