Promote e2e eviction test to conformance

This commit is contained in:
Jordan Liggitt
2021-04-01 23:18:45 -04:00
parent 10b07085f8
commit a07d4460bf
2 changed files with 14 additions and 1 deletions

View File

@@ -314,7 +314,12 @@ var _ = SIGDescribe("DisruptionController", func() {
})
}
ginkgo.It("should block an eviction until the PDB is updated to allow it", func() {
/*
Release : v1.22
Testname: PodDisruptionBudget: block an eviction until the PDB is updated to allow it
Description: Eviction API must block an eviction until the PDB is updated to allow it
*/
framework.ConformanceIt("should block an eviction until the PDB is updated to allow it", func() {
ginkgo.By("Creating a pdb that targets all three pods in a test replica set")
createPDBMinAvailableOrDie(cs, ns, defaultName, intstr.FromInt(3), defaultLabels)
createReplicaSetOrDie(cs, ns, 3, false)