mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-06-08 16:30:57 -04:00
Merge pull request #138963 from dims/remove-flaky-notation
Remove [Flaky] for green tests
This commit is contained in:
commit
8e161c8126
2 changed files with 2 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue