Skip to content

Commit 8947756

Browse files
committed
feature: namespace deletion member service account
The registration service uses the member service account to be able to interact with the member clusters. In order to be able to delete the user namespaces to trigger a reconciliation from the NSTemplateSet controller, we need the service account to have the "delete" permission too. SANDBOX-1067
1 parent 8d62db8 commit 8947756

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testsupport/wait/member.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2657,7 +2657,7 @@ func (a *MemberAwaitility) WaitForToolchainClusterResources(t *testing.T) {
26572657
{
26582658
APIGroups: []string{""},
26592659
Resources: []string{"namespaces"},
2660-
Verbs: []string{"get", "list", "watch"},
2660+
Verbs: []string{"delete", "get", "list", "watch"},
26612661
},
26622662
{
26632663
APIGroups: []string{""},

0 commit comments

Comments
 (0)