Promote ServiceAccount e2e test to Conformance

This commit is contained in:
Stephen Heywood 2022-10-10 12:12:17 +13:00
parent a5481453f7
commit 5ad48780ae
2 changed files with 14 additions and 1 deletions

View File

@ -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]'

View File

@ -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)