Skip to content
Closed
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions test/e2e/quota-preemption/quota_preemption_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ var _ = ginkgo.Describe("QuotaPreemption", func() {
}, 5*time.Second, time.Second).Should(gomega.Succeed())
})

ginkgo.PIt("Needs Investigation - Quota_Preemption_Delay_Inherited_From_Parent", func() {
ginkgo.It("Quota_Preemption_Delay_Inherited_From_Parent", func() {
ginkgo.By("Quota preemption delay set on parent queue should be inherited by child queues that do not set it explicitly.")

// Apply initial config: parent has quota.preemption.delay=20s, child (queue-a) has no delay set.
Expand All @@ -313,7 +313,9 @@ var _ = ginkgo.Describe("QuotaPreemption", func() {
Ω(err).NotTo(gomega.HaveOccurred())

ginkgo.By("Waiting for all 3 deployment pods to be running")
err = kClient.WaitForPodBySelectorRunning(dev, "app=app-a", 30)
err = kClient.WaitForPodBySelector(dev, "app=app-a", 20*time.Second)
Ω(err).NotTo(gomega.HaveOccurred())
err = kClient.WaitForPodBySelectorRunning(dev, "app=app-a", 10)
Ω(err).NotTo(gomega.HaveOccurred())
ginkgo.By("All 3 pods are running before quota is reduced")

Expand Down