Merge pull request #84861 from sttts/sttts-crd-defaulting-conformance

e2e: promote CRD defaulting test to conformance test
This commit is contained in:
Kubernetes Prow Robot 2019-11-16 05:43:40 -08:00 committed by GitHub
commit 16e0976bd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -15,6 +15,7 @@ test/e2e/apimachinery/custom_resource_definition.go: "creating/deleting custom r
test/e2e/apimachinery/custom_resource_definition.go: "listing custom resource definition objects works" test/e2e/apimachinery/custom_resource_definition.go: "listing custom resource definition objects works"
test/e2e/apimachinery/custom_resource_definition.go: "getting/updating/patching custom resource definition status sub-resource works" test/e2e/apimachinery/custom_resource_definition.go: "getting/updating/patching custom resource definition status sub-resource works"
test/e2e/apimachinery/custom_resource_definition.go: "should include custom resource definition resources in discovery documents" test/e2e/apimachinery/custom_resource_definition.go: "should include custom resource definition resources in discovery documents"
test/e2e/apimachinery/custom_resource_definition.go: "custom resource defaulting for requests and from storage works"
test/e2e/apimachinery/garbage_collector.go: "should delete pods created by rc when not orphaning" test/e2e/apimachinery/garbage_collector.go: "should delete pods created by rc when not orphaning"
test/e2e/apimachinery/garbage_collector.go: "should orphan pods created by rc if delete options say so" test/e2e/apimachinery/garbage_collector.go: "should orphan pods created by rc if delete options say so"
test/e2e/apimachinery/garbage_collector.go: "should delete RS created by deployment when not orphaning" test/e2e/apimachinery/garbage_collector.go: "should delete RS created by deployment when not orphaning"

View File

@ -264,7 +264,7 @@ var _ = SIGDescribe("CustomResourceDefinition resources [Privileged:ClusterAdmin
the default is applied. Create another CR. Remove default, add default for another field and read CR until the default is applied. Create another CR. Remove default, add default for another field and read CR until
new field is defaulted, but old default stays. new field is defaulted, but old default stays.
*/ */
ginkgo.It("custom resource defaulting for requests and from storage works ", func() { framework.ConformanceIt("custom resource defaulting for requests and from storage works ", func() {
config, err := framework.LoadConfig() config, err := framework.LoadConfig()
framework.ExpectNoError(err, "loading config") framework.ExpectNoError(err, "loading config")
apiExtensionClient, err := clientset.NewForConfig(config) apiExtensionClient, err := clientset.NewForConfig(config)