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
The only significant change is replacing the wildcard RBAC verb with
all the permissions of roles created by the Operator during RBAC
reconciliation.
See: 78b3975
Copy file name to clipboardExpand all lines: installers/olm/postgresoperator.csv.yaml
+63-9Lines changed: 63 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,7 @@ spec:
66
66
clusterPermissions:
67
67
- serviceAccountName: postgres-operator
68
68
rules:
69
+
# dynamic namespace mode
69
70
- apiGroups:
70
71
- ''
71
72
resources:
@@ -77,6 +78,7 @@ spec:
77
78
- create
78
79
- update
79
80
- delete
81
+
# reconcile rbac
80
82
- apiGroups:
81
83
- ''
82
84
resources:
@@ -90,23 +92,75 @@ spec:
90
92
- rbac.authorization.k8s.io
91
93
resources:
92
94
- roles
95
+
- rolebindings
93
96
verbs:
94
-
- '*'# BUG(cbandy): spec.install.spec.clusterPermissions.rules.verbs in body should be one of [* assign get list watch create update patch put post delete deletecollection initialize use]
0 commit comments