diff --git a/.gitignore b/.gitignore index 4071b56..cf6ff81 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ bin/ .vscode cover.out +*~ diff --git a/api/v2/helper/seed_access.go b/api/v2/helper/seed_access.go index 822b7ae..adb2831 100644 --- a/api/v2/helper/seed_access.go +++ b/api/v2/helper/seed_access.go @@ -206,6 +206,11 @@ func ensureShootRBAC(ctx context.Context, shootConfig *rest.Config, shootNamespa Resources: []string{"pods", "secrets", "services"}, Verbs: []string{"get", "list", "watch"}, }, + { + APIGroups: []string{""}, + Resources: []string{"configmaps"}, + Verbs: []string{"get", "create", "update", "list", "watch"}, + }, { APIGroups: []string{""}, Resources: []string{"events"},