From 8647c23c11fc291051d012c722cdddeaeb3b0b5f Mon Sep 17 00:00:00 2001 From: David Porter Date: Thu, 2 Mar 2023 19:19:44 -0800 Subject: [PATCH] test: Fix path to e2e node sample device plugin The existing path is incorrect (missing `sample-device-plugin`) directory and thus causing test failures. The full path should be `test/e2e/testing-manifests/sample-device-plugin/sample-device-plugin.yaml`. Signed-off-by: David Porter --- test/e2e_node/util_sampledevice.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e_node/util_sampledevice.go b/test/e2e_node/util_sampledevice.go index eca7418164c..96f7ffb95c6 100644 --- a/test/e2e_node/util_sampledevice.go +++ b/test/e2e_node/util_sampledevice.go @@ -22,7 +22,7 @@ import ( const ( // SampleDevicePluginDSYAML is the path of the daemonset template of the sample device plugin. // TODO: Parametrize it by making it a feature in TestFramework. - SampleDevicePluginDSYAML = "test/e2e/testing-manifests/sample-device-plugin.yaml" + SampleDevicePluginDSYAML = "test/e2e/testing-manifests/sample-device-plugin/sample-device-plugin.yaml" SampleDevicePluginControlRegistrationDSYAML = "test/e2e/testing-manifests/sample-device-plugin/sample-device-plugin-control-registration.yaml" // SampleDevicePluginName is the name of the device plugin pod