File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ x-google-marketplace:
81
81
ubbagent.image.tag :
82
82
type : TAG
83
83
84
- # Allow the deployer to create CRDs and webhook configurations See
84
+ # Allow the deployer to create CRDs and webhook configurations. See:
85
85
# https://github.com/GoogleCloudPlatform/marketplace-k8s-app-tools/blob/master/docs/schema.md#deployerserviceaccount
86
86
deployerServiceAccount :
87
87
# Note: the created serviceaccount is "{{.Release.Name}}-deployer-sa".
@@ -97,8 +97,11 @@ x-google-marketplace:
97
97
- apiGroups : ["admissionregistration.k8s.io"]
98
98
resources : ["*"]
99
99
verbs : ["*"]
100
-
101
- # Other fields, like clusterConstraints, can be included here.
100
+ # Although the deployer does not create RBAC objets, it still
101
+ # needs to be able to list them.
102
+ - apiGroups : ["rbac.authorization.k8s.io"]
103
+ resources : ["clusterrolebindings", "clusterroles", "rolebindings", "roles"]
104
+ verbs : ["list", "get"]
102
105
103
106
# The Properties and Required sections of v2 are structured the same as those of v1.
104
107
properties :
You can’t perform that action at this time.
0 commit comments