diff --git a/test/e2e/node/kubelet.go b/test/e2e/node/kubelet.go index 0cebd5514e0..c06aa20bde9 100644 --- a/test/e2e/node/kubelet.go +++ b/test/e2e/node/kubelet.go @@ -369,7 +369,7 @@ var _ = SIGDescribe("kubelet", func() { }) // Test host cleanup when disrupting the volume environment. - f.Describe("host cleanup with volume mounts [HostCleanup]", f.WithFlaky(), func() { + f.Describe("host cleanup with volume mounts [HostCleanup]", func() { type hostCleanupTest struct { itDescr string diff --git a/test/e2e/storage/persistent_volumes-local.go b/test/e2e/storage/persistent_volumes-local.go index 4370defd348..0ec43fb0324 100644 --- a/test/e2e/storage/persistent_volumes-local.go +++ b/test/e2e/storage/persistent_volumes-local.go @@ -290,8 +290,7 @@ var _ = utils.SIGDescribe("PersistentVolumes-local", func() { e2epod.DeletePodOrFail(ctx, config.client, config.ns, pod2.Name) }) - f.It("should set different fsGroup for second pod if first pod is deleted", f.WithFlaky(), func(ctx context.Context) { - // TODO: Disabled temporarily, remove [Flaky] tag after #73168 is fixed. + f.It("should set different fsGroup for second pod if first pod is deleted", func(ctx context.Context) { fsGroup1, fsGroup2 := int64(1234), int64(4321) ginkgo.By("Create first pod and check fsGroup is set") pod1 := createPodWithFsGroupTest(ctx, config, testVol, fsGroup1, fsGroup1)