From 2d43e614007596a0453b770dcfefa7534f68812e Mon Sep 17 00:00:00 2001 From: Tuomas Katila Date: Tue, 26 May 2026 13:31:44 +0300 Subject: [PATCH 1/2] gpu plugin: create monitoring without topology hints Fix warning prints due to /dev/meiX not being accessible Signed-off-by: Tuomas Katila --- cmd/gpu_plugin/gpu_plugin.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/gpu_plugin/gpu_plugin.go b/cmd/gpu_plugin/gpu_plugin.go index 9d2d87ccb..016609229 100644 --- a/cmd/gpu_plugin/gpu_plugin.go +++ b/cmd/gpu_plugin/gpu_plugin.go @@ -759,7 +759,8 @@ func (dp *devicePlugin) scan() (dpapi.DeviceTree, error) { // all Intel GPUs are under single monitoring resource per KMD if len(monitor) > 0 { for resourceName, devices := range monitor { - deviceInfo := dpapi.NewDeviceInfo(pluginapi.Healthy, devices, nil, nil, nil, nil) + deviceInfo := dpapi.NewDeviceInfoWithTopologyHints( + pluginapi.Healthy, devices, nil, nil, nil, nil, nil) devTree.AddDevice(resourceName, monitorID, deviceInfo) } } From 189d47b2f097c4fc8f184c2ccbb5a1e2fd77638c Mon Sep 17 00:00:00 2001 From: Tuomas Katila Date: Tue, 26 May 2026 11:45:01 +0300 Subject: [PATCH 2/2] e2e: move to 1.36.1 k3s Signed-off-by: Tuomas Katila --- test/e2e/scripts/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/scripts/common.sh b/test/e2e/scripts/common.sh index 26d5175b0..bc4c1a521 100644 --- a/test/e2e/scripts/common.sh +++ b/test/e2e/scripts/common.sh @@ -27,7 +27,7 @@ k3s_version_for_k8s_version() { local known_versions - known_versions="v1.36.0-rc2+k3s1;v1.35.0+k3s1;v1.34.1+k3s1;v1.33.5+k3s1;v1.32.9+k3s1;v1.31.9+k3s1;v1.30.13+k3s1" + known_versions="v1.36.1+k3s1;v1.35.0+k3s1;v1.34.1+k3s1;v1.33.5+k3s1;v1.32.9+k3s1;v1.31.9+k3s1;v1.30.13+k3s1" local latest latest=$(echo $known_versions | tr ';' '\n' | grep "$requested" | head -1)