Merge pull request #100173 from wojtek-t/cleanup_describe_23

Remove double-ownership of PV ResourceQuota tests
This commit is contained in:
Kubernetes Prow Robot 2021-03-12 21:21:04 -08:00 committed by GitHub
commit 96f5e60308
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -478,7 +478,7 @@ var _ = SIGDescribe("ResourceQuota", func() {
Delete the PVC. Deletion MUST succeed and resource usage count against its PVC and storage object MUST be released from ResourceQuotaStatus of the ResourceQuota. Delete the PVC. Deletion MUST succeed and resource usage count against its PVC and storage object MUST be released from ResourceQuotaStatus of the ResourceQuota.
[NotConformancePromotable] as test suite do not have any e2e at this moment which are explicitly verifying PV and PVC behaviour. [NotConformancePromotable] as test suite do not have any e2e at this moment which are explicitly verifying PV and PVC behaviour.
*/ */
ginkgo.It("should create a ResourceQuota and capture the life of a persistent volume claim. [sig-storage]", func() { ginkgo.It("should create a ResourceQuota and capture the life of a persistent volume claim", func() {
ginkgo.By("Counting existing ResourceQuota") ginkgo.By("Counting existing ResourceQuota")
c, err := countResourceQuota(f.ClientSet, f.Namespace.Name) c, err := countResourceQuota(f.ClientSet, f.Namespace.Name)
framework.ExpectNoError(err) framework.ExpectNoError(err)
@ -528,7 +528,7 @@ var _ = SIGDescribe("ResourceQuota", func() {
Delete the PVC. Deletion MUST succeed and resource usage count against PVC, storageClass and storage object MUST be released from ResourceQuotaStatus of the ResourceQuota. Delete the PVC. Deletion MUST succeed and resource usage count against PVC, storageClass and storage object MUST be released from ResourceQuotaStatus of the ResourceQuota.
[NotConformancePromotable] as test suite do not have any e2e at this moment which are explicitly verifying PV and PVC behaviour. [NotConformancePromotable] as test suite do not have any e2e at this moment which are explicitly verifying PV and PVC behaviour.
*/ */
ginkgo.It("should create a ResourceQuota and capture the life of a persistent volume claim with a storage class. [sig-storage]", func() { ginkgo.It("should create a ResourceQuota and capture the life of a persistent volume claim with a storage class", func() {
ginkgo.By("Counting existing ResourceQuota") ginkgo.By("Counting existing ResourceQuota")
c, err := countResourceQuota(f.ClientSet, f.Namespace.Name) c, err := countResourceQuota(f.ClientSet, f.Namespace.Name)
framework.ExpectNoError(err) framework.ExpectNoError(err)