Merge pull request #88036 from ii/promote-podtemplate-lifecycle

Promote: PodTemplate Lifecycle test - +3 conformance endpoint coverage
This commit is contained in:
Kubernetes Prow Robot 2020-04-07 15:27:43 -07:00 committed by GitHub
commit 3072d1e22e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 3 deletions

View File

@ -1735,6 +1735,14 @@
visible at runtime in the container.
release: v1.9
file: test/e2e/common/downward_api.go
- testname: PodTemplate lifecycle
codename: '[sig-node] PodTemplates should run the lifecycle of PodTemplates [Conformance]'
description: Attempt to create a PodTemplate. Patch the created PodTemplate. Fetching
the PodTemplate MUST reflect changes. By fetching all the PodTemplates via a Label
selector it MUST find the PodTemplate by it's static label and updated value.
The PodTemplate must be deleted.
release: v1.19
file: test/e2e/common/podtemplates.go
- testname: LimitRange, resources
codename: '[sig-scheduling] LimitRange should create a LimitRange with defaults
and ensure pod has those defaults applied. [Conformance]'

View File

@ -29,10 +29,15 @@ import (
"github.com/onsi/ginkgo"
)
var _ = ginkgo.Describe("[sig-architecture] PodTemplates", func() {
var _ = ginkgo.Describe("[sig-node] PodTemplates", func() {
f := framework.NewDefaultFramework("podtemplate")
ginkgo.It("should run the lifecycle of PodTemplates", func() {
/*
Release : v1.19
Testname: PodTemplate lifecycle
Description: Attempt to create a PodTemplate. Patch the created PodTemplate. Fetching the PodTemplate MUST reflect changes.
By fetching all the PodTemplates via a Label selector it MUST find the PodTemplate by it's static label and updated value. The PodTemplate must be deleted.
*/
framework.ConformanceIt("should run the lifecycle of PodTemplates", func() {
testNamespaceName := f.Namespace.Name
podTemplateName := "nginx-pod-template-" + string(uuid.NewUUID())