Merge pull request #138963 from dims/remove-flaky-notation

Remove [Flaky] for green tests
This commit is contained in:
Kubernetes Prow Robot 2026-05-12 22:04:40 +05:30 committed by GitHub
commit 8e161c8126
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 3 deletions

View file

@ -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

View file

@ -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)