Skip to content

Commit eddae43

Browse files
committed
7dfa5627199eb28ab2551feb4575a6413079a69a: update public repo contents
1 parent 965d580 commit eddae43

File tree

5 files changed

+115
-126
lines changed

5 files changed

+115
-126
lines changed

crds.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
---
22
# Source: mongodb-enterprise-operator/templates/crds.yaml
3-
4-
---
53
apiVersion: apiextensions.k8s.io/v1beta1
64
kind: CustomResourceDefinition
75
metadata:
@@ -412,8 +410,8 @@ spec:
412410
shardCount:
413411
minimum: 1
414412
type: integer
415-
416413
---
414+
# Source: mongodb-enterprise-operator/templates/crds.yaml
417415
apiVersion: apiextensions.k8s.io/v1beta1
418416
kind: CustomResourceDefinition
419417
metadata:
@@ -493,8 +491,8 @@ spec:
493491
required:
494492
- username
495493
- db
496-
497494
---
495+
# Source: mongodb-enterprise-operator/templates/crds.yaml
498496
apiVersion: apiextensions.k8s.io/v1beta1
499497
kind: CustomResourceDefinition
500498
metadata:
@@ -835,6 +833,7 @@ spec:
835833
# prevent you from applying a variety of invalid resource definitions. The
836834
# validating webhooks are optional so this can be removed if necessary.
837835
---
836+
# Source: mongodb-enterprise-operator/templates/crds.yaml
838837
kind: ClusterRole
839838
apiVersion: rbac.authorization.k8s.io/v1
840839
metadata:

helm_chart/values-openshift.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ opsManager:
3434

3535
initOpsManager:
3636
name: mongodb-enterprise-init-ops-manager
37-
version: 1.0.0
37+
version: 1.0.1
3838

3939
appDb:
4040
name: mongodb-enterprise-appdb
4141

4242
initAppDb:
4343
name: mongodb-enterprise-init-appdb
44-
version: 1.0.0
44+
version: 1.0.1
4545

4646
registry:
4747
# The pull secret must be specified

helm_chart/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ opsManager:
3535

3636
initOpsManager:
3737
name: mongodb-enterprise-init-ops-manager
38-
version: 1.0.0
38+
version: 1.0.1
3939

4040
appDb:
4141
name: mongodb-enterprise-appdb
4242

4343
initAppDb:
4444
name: mongodb-enterprise-init-appdb
45-
version: 1.0.0
45+
version: 1.0.1
4646

4747
registry:
4848
imagePullSecrets:

mongodb-enterprise-openshift.yaml

Lines changed: 54 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,58 @@
11
---
22
# Source: mongodb-enterprise-operator/templates/operator-roles.yaml
3-
---
43
apiVersion: v1
54
kind: ServiceAccount
65
metadata:
76
name: enterprise-operator
87
namespace: mongodb
9-
10-
118
---
9+
# Source: mongodb-enterprise-operator/templates/operator-roles.yaml
10+
kind: ClusterRole
11+
apiVersion: rbac.authorization.k8s.io/v1
12+
metadata:
13+
name: enterprise-operator-mongodb-certs
14+
rules:
15+
- apiGroups:
16+
- certificates.k8s.io
17+
resources:
18+
- certificatesigningrequests
19+
verbs:
20+
- get
21+
- create
22+
- list
23+
- watch
24+
---
25+
# Source: mongodb-enterprise-operator/templates/operator-roles.yaml
26+
kind: ClusterRoleBinding
27+
apiVersion: rbac.authorization.k8s.io/v1
28+
metadata:
29+
name: enterprise-operator-mongodb-webhook-binding
30+
namespace: mongodb
31+
roleRef:
32+
apiGroup: rbac.authorization.k8s.io
33+
kind: ClusterRole
34+
name: mongodb-enterprise-operator-mongodb-webhook
35+
subjects:
36+
- kind: ServiceAccount
37+
name: enterprise-operator
38+
namespace: mongodb
39+
---
40+
# Source: mongodb-enterprise-operator/templates/operator-roles.yaml
41+
kind: ClusterRoleBinding
42+
apiVersion: rbac.authorization.k8s.io/v1
43+
metadata:
44+
name: enterprise-operator-mongodb-certs-binding
45+
namespace: mongodb
46+
roleRef:
47+
apiGroup: rbac.authorization.k8s.io
48+
kind: ClusterRole
49+
name: enterprise-operator-mongodb-certs
50+
subjects:
51+
- kind: ServiceAccount
52+
name: enterprise-operator
53+
namespace: mongodb
54+
---
55+
# Source: mongodb-enterprise-operator/templates/operator-roles.yaml
1256
kind: Role
1357
apiVersion: rbac.authorization.k8s.io/v1
1458
metadata:
@@ -57,21 +101,7 @@ rules:
57101
# definitions. The validating webhooks are optional so this can be removed if
58102
# necessary.
59103
---
60-
kind: ClusterRoleBinding
61-
apiVersion: rbac.authorization.k8s.io/v1
62-
metadata:
63-
name: enterprise-operator-mongodb-webhook-binding
64-
namespace: mongodb
65-
roleRef:
66-
apiGroup: rbac.authorization.k8s.io
67-
kind: ClusterRole
68-
name: mongodb-enterprise-operator-mongodb-webhook
69-
subjects:
70-
- kind: ServiceAccount
71-
name: enterprise-operator
72-
namespace: mongodb
73-
74-
---
104+
# Source: mongodb-enterprise-operator/templates/operator-roles.yaml
75105
kind: RoleBinding
76106
apiVersion: rbac.authorization.k8s.io/v1
77107
metadata:
@@ -88,62 +118,29 @@ subjects:
88118

89119
# This ClusterRole is needed if the user wants to use the Kubernetes CA
90120
# infrastructure to generate certificates.
91-
---
92-
kind: ClusterRole
93-
apiVersion: rbac.authorization.k8s.io/v1
94-
metadata:
95-
name: enterprise-operator-mongodb-certs
96-
rules:
97-
- apiGroups:
98-
- certificates.k8s.io
99-
resources:
100-
- certificatesigningrequests
101-
verbs:
102-
- get
103-
- create
104-
- list
105-
- watch
106-
107-
---
108-
kind: ClusterRoleBinding
109-
apiVersion: rbac.authorization.k8s.io/v1
110-
metadata:
111-
name: enterprise-operator-mongodb-certs-binding
112-
namespace: mongodb
113-
roleRef:
114-
apiGroup: rbac.authorization.k8s.io
115-
kind: ClusterRole
116-
name: enterprise-operator-mongodb-certs
117-
subjects:
118-
- kind: ServiceAccount
119-
name: enterprise-operator
120-
namespace: mongodb
121-
122-
123121
---
124122
# Source: mongodb-enterprise-operator/templates/database-roles.yaml
125-
---
126123
apiVersion: v1
127124
kind: ServiceAccount
128125
metadata:
129126
name: mongodb-enterprise-appdb
130127
namespace: mongodb
131-
132128
---
129+
# Source: mongodb-enterprise-operator/templates/database-roles.yaml
133130
apiVersion: v1
134131
kind: ServiceAccount
135132
metadata:
136133
name: mongodb-enterprise-database-pods
137134
namespace: mongodb
138-
139135
---
136+
# Source: mongodb-enterprise-operator/templates/database-roles.yaml
140137
apiVersion: v1
141138
kind: ServiceAccount
142139
metadata:
143140
name: mongodb-enterprise-ops-manager
144141
namespace: mongodb
145-
146142
---
143+
# Source: mongodb-enterprise-operator/templates/database-roles.yaml
147144
kind: Role
148145
apiVersion: rbac.authorization.k8s.io/v1
149146
metadata:
@@ -156,8 +153,8 @@ rules:
156153
- configmaps
157154
verbs:
158155
- get
159-
160156
---
157+
# Source: mongodb-enterprise-operator/templates/database-roles.yaml
161158
kind: RoleBinding
162159
apiVersion: rbac.authorization.k8s.io/v1
163160
metadata:
@@ -171,10 +168,8 @@ subjects:
171168
- kind: ServiceAccount
172169
name: mongodb-enterprise-appdb
173170
namespace: mongodb
174-
175171
---
176172
# Source: mongodb-enterprise-operator/templates/operator.yaml
177-
---
178173
apiVersion: apps/v1
179174
kind: Deployment
180175
metadata:
@@ -223,11 +218,11 @@ spec:
223218
- name: INIT_OPS_MANAGER_IMAGE_REPOSITORY
224219
value: registry.connect.redhat.com/mongodb/mongodb-enterprise-init-ops-manager
225220
- name: INIT_OPS_MANAGER_VERSION
226-
value: 1.0.0
221+
value: 1.0.1
227222
- name: INIT_APPDB_IMAGE_REPOSITORY
228223
value: registry.connect.redhat.com/mongodb/mongodb-enterprise-init-appdb
229224
- name: INIT_APPDB_VERSION
230-
value: 1.0.0
225+
value: 1.0.1
231226
- name: OPS_MANAGER_IMAGE_PULL_POLICY
232227
value: Always
233228
- name: APPDB_IMAGE_REPOSITORY

0 commit comments

Comments
 (0)