File tree Expand file tree Collapse file tree 1 file changed +41
-2
lines changed Expand file tree Collapse file tree 1 file changed +41
-2
lines changed Original file line number Diff line number Diff line change 11---
22# Source: enterprise-operator/templates/operator-roles.yaml
3+ kind : ClusterRole
4+ apiVersion : rbac.authorization.k8s.io/v1
5+ metadata :
6+ name : mongodb-enterprise-operator-mongodb-webhook
7+ rules :
8+ - apiGroups :
9+ - " admissionregistration.k8s.io"
10+ resources :
11+ - validatingwebhookconfigurations
12+ verbs :
13+ - get
14+ - create
15+ - update
16+ - delete
17+ - apiGroups :
18+ - " "
19+ resources :
20+ - services
21+ verbs :
22+ - get
23+ - list
24+ - watch
25+ - create
26+ - update
27+ - delete
28+ ---
29+ # Source: enterprise-operator/templates/operator-roles.yaml
30+ kind : ClusterRoleBinding
31+ apiVersion : rbac.authorization.k8s.io/v1
32+ metadata :
33+ name : mongodb-enterprise-operator-mongodb-webhook-binding
34+ roleRef :
35+ apiGroup : rbac.authorization.k8s.io
36+ kind : ClusterRole
37+ name : mongodb-enterprise-operator-mongodb-webhook
38+ subjects :
39+ - kind : ServiceAccount
40+ name : mongodb-enterprise-operator
41+ namespace : mongodb
42+ ---
43+ # Source: enterprise-operator/templates/operator-roles.yaml
344kind : Role
445apiVersion : rbac.authorization.k8s.io/v1
546metadata :
@@ -233,8 +274,6 @@ spec:
233274 value : ubi8
234275 - name : PERFORM_FAILOVER
235276 value : ' true'
236- - name : MDB_WEBHOOK_REGISTER_CONFIGURATION
237- value : " false"
238277 - name : RELATED_IMAGE_MONGODB_ENTERPRISE_DATABASE_IMAGE_1_25_0
239278 value : " quay.io/mongodb/mongodb-enterprise-database-ubi:1.25.0"
240279 - name : RELATED_IMAGE_INIT_DATABASE_IMAGE_REPOSITORY_1_25_0
You can’t perform that action at this time.
0 commit comments