From 22ae49bb5d9f2a8f18a0c79c45221878965fbffb Mon Sep 17 00:00:00 2001 From: Shihang Zhang Date: Fri, 6 Nov 2020 13:50:15 -0800 Subject: [PATCH] Promote TokenRequest e2e test to Conformance --- test/conformance/testdata/conformance.yaml | 7 +++++++ test/e2e/auth/service_accounts.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index 3879ba3a274..e76add520ba 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -1364,6 +1364,13 @@ Container. release: v1.9 file: test/e2e/auth/service_accounts.go +- testname: TokenRequestProjection should mount a projected volume with token using + TokenRequest API. + codename: '[sig-auth] ServiceAccounts should mount projected service account token + [Conformance]' + description: Ensure that projected service account token is mounted. + release: v1.20 + file: test/e2e/auth/service_accounts.go - testname: ServiceAccount lifecycle test codename: '[sig-auth] ServiceAccounts should run through the lifecycle of a ServiceAccount [Conformance]' diff --git a/test/e2e/auth/service_accounts.go b/test/e2e/auth/service_accounts.go index 94ce734da99..a3915ef0945 100644 --- a/test/e2e/auth/service_accounts.go +++ b/test/e2e/auth/service_accounts.go @@ -424,7 +424,7 @@ var _ = SIGDescribe("ServiceAccounts", func() { Testname: TokenRequestProjection should mount a projected volume with token using TokenRequest API. Description: Ensure that projected service account token is mounted. */ - ginkgo.It("should mount projected service account token when requested", func() { + framework.ConformanceIt("should mount projected service account token", func() { var ( podName = "test-pod-" + string(uuid.NewUUID())