Promote: PodTemplate Lifecycle test

This commit is contained in:
Caleb Woodbine 2020-02-12 09:19:37 +13:00
parent debb1edee1
commit 633a72ce28
2 changed files with 16 additions and 2 deletions

View File

@ -1234,6 +1234,15 @@
StorageClass or a dynamic provisioner.
release: v1.9
file: test/e2e/apps/statefulset.go
- testname: ConfigMap lifecycle
codename: '[sig-architecture] PodTemplates should run the lifecycle of PodTemplates
[Conformance]'
description: Attempt to create a ConfigMap. Patch the created ConfigMap. Fetching
the ConfigMap MUST reflect changes. By fetching all the ConfigMaps via a Label
selector it MUST find the ConfigMap by it's static label and updated value. The
ConfigMap must be deleted by Collection.
release: v1.18
file: test/e2e/common/podtemplates.go
- testname: Service account tokens auto mount optionally
codename: '[sig-auth] ServiceAccounts should allow opting out of API token automount [Conformance]'
description: Ensure that Service Account keys are mounted into the Pod only when

View File

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