Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Handle Race Condition for Istio Gateway Secret #2078

Merged
merged 13 commits into from
Dec 2, 2024
Prev Previous commit
fix rbac
ruanxin committed Dec 2, 2024
commit 4ca37354d4d15e704a5bfd772f51c117556fe024
4 changes: 2 additions & 2 deletions tests/e2e/rbac_privileges_test.go
Original file line number Diff line number Diff line change
@@ -178,12 +178,12 @@ var _ = Describe("RBAC Privileges", func() {
{
APIGroups: []string{""},
Resources: []string{"secrets"},
Verbs: []string{"list", "watch", "create", "delete", "update", "get"},
Verbs: []string{"list", "watch", "get", "create", "delete", "update"},
},
{
APIGroups: []string{"cert-manager.io"},
Resources: []string{"certificates"},
Verbs: []string{"patch", "list", "watch", "get", "create", "delete", "get"},
Verbs: []string{"patch", "list", "watch", "get", "create", "delete"},
},
{
APIGroups: []string{"cert-manager.io"},