From 726734b0b02f00938c4f69bbd322db6515375c31 Mon Sep 17 00:00:00 2001 From: Drew Sirenko <68304519+AndrewSirenko@users.noreply.github.com> Date: Thu, 1 Aug 2024 17:52:33 -0400 Subject: [PATCH] Fix broken A/D Controller metrics test --- test/e2e/storage/volume_metrics.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/e2e/storage/volume_metrics.go b/test/e2e/storage/volume_metrics.go index 935c82e1c66..a2e30e773e9 100644 --- a/test/e2e/storage/volume_metrics.go +++ b/test/e2e/storage/volume_metrics.go @@ -431,13 +431,6 @@ var _ = utils.SIGDescribe(framework.WithSerial(), "Volume metrics", func() { e2eskipper.Skipf("Could not get controller-manager metrics - skipping") } - // Forced detach metric should be present - forceDetachKey := "attachdetach_controller_forced_detaches" - _, ok := updatedControllerMetrics[forceDetachKey] - if !ok { - framework.Failf("Key %q not found in A/D Controller metrics", forceDetachKey) - } - // Wait and validate totalVolumesKey := "attachdetach_controller_total_volumes" states := []string{"actual_state_of_world", "desired_state_of_world"}