Merge pull request #113061 from ii/promote-service-account-replace-test

Promote replaceCoreV1NamespacedServiceAccount test to Conformance - +1 Endpoint
This commit is contained in:
Kubernetes Prow Robot 2022-10-13 17:58:57 -07:00 committed by GitHub
commit 350fa3de66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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. ServiceAccount will be deleted and MUST find a deleted watch event.
release: v1.19 release: v1.19
file: test/e2e/auth/service_accounts.go 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 - testname: Kubectl, guestbook application
codename: '[sig-cli] Kubectl client Guestbook application should create and stop codename: '[sig-cli] Kubectl client Guestbook application should create and stop
a working application [Conformance]' 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) 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) saClient := f.ClientSet.CoreV1().ServiceAccounts(f.Namespace.Name)
saName := "e2e-sa-" + utilrand.String(5) saName := "e2e-sa-" + utilrand.String(5)