You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/capsule/README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,9 +143,11 @@ The following Values have changed key or Value:
143
143
| manager.options.userNames | list |`[]`| DEPRECATED: use users properties. Names of the users considered as Capsule users. |
144
144
| manager.options.users | list |`[{"kind":"Group","name":"projectcapsule.dev"}]`| Define entities which are considered part of the Capsule construct. Users not mentioned here will be ignored by Capsule |
145
145
| manager.options.workers | int |`1`| Workers (MaxConcurrentReconciles) is the maximum number of concurrent Reconciles which can be run (ALPHA). |
146
+
| manager.rbac.clusterRole.extraResources | list |`[]`||
146
147
| manager.rbac.create | bool |`true`| Specifies whether RBAC resources should be created. |
147
148
| manager.rbac.existingClusterRoles | list |`[]`| Specifies further cluster roles to be added to the Capsule manager service account. |
148
149
| manager.rbac.existingRoles | list |`[]`| Specifies further cluster roles to be added to the Capsule manager service account. |
150
+
| manager.rbac.role.extraResources | list |`[]`||
149
151
| manager.rbac.strict | bool |`false`| Strongly restrict the RBAC assigned to Capsule Controller. When set to true you must aggregate further permissions by yourself. |
150
152
| manager.readinessProbe | object |`{"httpGet":{"path":"/readyz","port":10080}}`| Configure the readiness probe using Deployment probe spec |
151
153
| manager.resources | object |`{}`| Set the resource requests/limits for the Capsule manager container |
Copy file name to clipboardExpand all lines: charts/capsule/values.yaml
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -131,6 +131,17 @@ manager:
131
131
existingRoles: []
132
132
# - namespace-admin
133
133
134
+
role:
135
+
# - Extra resources provided to the capsule controller ServiceAccount. This can be used to grant permissions for custom resources which are not managed by capsule, but still need to be accessed by the controller. When using this option, you need to provide the name of the ClusterRole which will be created with the specified rules and then bind it to the Capsule ServiceAccount.
136
+
extraResources: []
137
+
138
+
clusterRole:
139
+
# - Extra resources provided to the capsule controller ServiceAccount. This can be used to grant permissions for custom resources which are not managed by capsule, but still need to be accessed by the controller. When using this option, you need to provide the name of the ClusterRole which will be created with the specified rules and then bind it to the Capsule ServiceAccount.
0 commit comments