diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index 7044cb37163..83aeadfeefd 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -1083,6 +1083,12 @@ ServiceAccount will be deleted and MUST find a deleted watch event. release: v1.19 file: test/e2e/auth/service_accounts.go +- testname: ServiceAccount, update a ServiceAccount + codename: '[sig-auth] ServiceAccounts should update a ServiceAccount [Conformance]' + description: A ServiceAccount is created which MUST succeed. When updating the ServiceAccount + it MUST succeed and the field MUST equal the new value. + release: v1.26 + file: test/e2e/auth/service_accounts.go - testname: Kubectl, guestbook application codename: '[sig-cli] Kubectl client Guestbook application should create and stop a working application [Conformance]' diff --git a/test/e2e/auth/service_accounts.go b/test/e2e/auth/service_accounts.go index b15d29aec82..f7bd947eaa3 100644 --- a/test/e2e/auth/service_accounts.go +++ b/test/e2e/auth/service_accounts.go @@ -800,7 +800,14 @@ var _ = SIGDescribe("ServiceAccounts", func() { framework.Logf("Reconciled root ca configmap in namespace %q", f.Namespace.Name) }) - ginkgo.It("should update a ServiceAccount", func() { + /* + Release: v1.26 + Testname: ServiceAccount, update a ServiceAccount + Description: A ServiceAccount is created which MUST succeed. When + updating the ServiceAccount it MUST succeed and the field MUST equal + the new value. + */ + framework.ConformanceIt("should update a ServiceAccount", func() { saClient := f.ClientSet.CoreV1().ServiceAccounts(f.Namespace.Name) saName := "e2e-sa-" + utilrand.String(5)