Skip to content

Commit 1e79fe3

Browse files
Kubernetes Enterprise Operator Release 1.16.3 (#224)
1 parent 5f8b459 commit 1e79fe3

File tree

6 files changed

+34
-11
lines changed

6 files changed

+34
-11
lines changed

crds.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -464,11 +464,15 @@ spec:
464464
items:
465465
type: string
466466
type: array
467+
timeoutMS:
468+
type: integer
467469
transportSecurity:
468470
enum:
469471
- tls
470472
- none
471473
type: string
474+
userCacheInvalidationInterval:
475+
type: integer
472476
userToDNMapping:
473477
type: string
474478
validateLDAPServerConfig:
@@ -1021,11 +1025,15 @@ spec:
10211025
items:
10221026
type: string
10231027
type: array
1028+
timeoutMS:
1029+
type: integer
10241030
transportSecurity:
10251031
enum:
10261032
- tls
10271033
- none
10281034
type: string
1035+
userCacheInvalidationInterval:
1036+
type: integer
10291037
userToDNMapping:
10301038
type: string
10311039
validateLDAPServerConfig:
@@ -1826,11 +1834,15 @@ spec:
18261834
items:
18271835
type: string
18281836
type: array
1837+
timeoutMS:
1838+
type: integer
18291839
transportSecurity:
18301840
enum:
18311841
- tls
18321842
- none
18331843
type: string
1844+
userCacheInvalidationInterval:
1845+
type: integer
18341846
userToDNMapping:
18351847
type: string
18361848
validateLDAPServerConfig:

mongodb-enterprise-openshift.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ spec:
189189
serviceAccountName: mongodb-enterprise-operator
190190
containers:
191191
- name: mongodb-enterprise-operator
192-
image: registry.connect.redhat.com/mongodb/enterprise-operator:1.16.2
192+
image: registry.connect.redhat.com/mongodb/enterprise-operator:1.16.3
193193
imagePullPolicy: Always
194194
args:
195195
- -watch-resource=mongodb
@@ -225,7 +225,7 @@ spec:
225225
- name: INIT_DATABASE_IMAGE_REPOSITORY
226226
value: registry.connect.redhat.com/mongodb/mongodb-enterprise-init-database
227227
- name: INIT_DATABASE_VERSION
228-
value: 1.0.9
228+
value: 1.0.10
229229
- name: DATABASE_VERSION
230230
value: 2.0.2
231231
# Ops Manager
@@ -239,7 +239,7 @@ spec:
239239
- name: INIT_APPDB_IMAGE_REPOSITORY
240240
value: registry.connect.redhat.com/mongodb/mongodb-enterprise-init-appdb
241241
- name: INIT_APPDB_VERSION
242-
value: 1.0.9
242+
value: 1.0.10
243243
- name: OPS_MANAGER_IMAGE_PULL_POLICY
244244
value: Always
245245
- name: AGENT_IMAGE

mongodb-enterprise.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ spec:
192192
runAsUser: 2000
193193
containers:
194194
- name: mongodb-enterprise-operator
195-
image: quay.io/mongodb/mongodb-enterprise-operator:1.16.2
195+
image: quay.io/mongodb/mongodb-enterprise-operator:1.16.3
196196
imagePullPolicy: Always
197197
args:
198198
- -watch-resource=mongodb
@@ -226,7 +226,7 @@ spec:
226226
- name: INIT_DATABASE_IMAGE_REPOSITORY
227227
value: quay.io/mongodb/mongodb-enterprise-init-database
228228
- name: INIT_DATABASE_VERSION
229-
value: 1.0.9
229+
value: 1.0.10
230230
- name: DATABASE_VERSION
231231
value: 2.0.2
232232
# Ops Manager
@@ -240,7 +240,7 @@ spec:
240240
- name: INIT_APPDB_IMAGE_REPOSITORY
241241
value: quay.io/mongodb/mongodb-enterprise-init-appdb
242242
- name: INIT_APPDB_VERSION
243-
value: 1.0.9
243+
value: 1.0.10
244244
- name: OPS_MANAGER_IMAGE_PULL_POLICY
245245
value: Always
246246
- name: AGENT_IMAGE

samples/mongodb/authentication/ldap/replica-set/replica-set-ldap.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,17 @@ spec:
5151
bindQueryPasswordSecretRef:
5252
name: "<secret-name>"
5353

54+
# Select True to validate the LDAP server configuration or False to skip validation.
55+
validateLDAPServerConfig: false
56+
57+
# LDAP-formatted query URL template executed by MongoDB to obtain the LDAP groups that the user belongs to
58+
authzQueryTemplate: "{USER}?memberOf?base"
59+
60+
# Maps the username provided to mongod or mongos for authentication to an LDAP Distinguished Name (DN).
61+
userToDNMapping: '[{match: "CN=mms-automation-agent,(.+),L=NY,ST=NY,C=US", substitution: "uid=mms-automation-agent,{0},dc=example,dc=org"}, {match: "(.+)", substitution:"uid={0},ou=groups,dc=example,dc=org"}]'
62+
63+
# Specify how long an authentication request should wait before timing out. In milliseconds.
64+
timeoutMS: 10000
65+
66+
# Specify how long MongoDB waits to flush the LDAP user cache. In seconds.
67+
userCacheInvalidationInterval: 30

samples/mongodb/mongodb-options/replica-set-mongod-options.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,5 @@ spec:
1515
additionalMongodConfig:
1616
systemLog:
1717
logAppend: true
18-
verbosity: 4
19-
operationProfiling:
20-
mode: slowOp
18+
systemLog.verbosity: 4
19+
operationProfiling.mode: slowOp

samples/ops-manager/ops-manager-remote-mode.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ spec:
2020
applicationDatabase:
2121
version: "4.4.11-ent"
2222
members: 3
23-
persistent: true
24-
2523
---
2624
# The nginx deployment allows to deploy the web server that will serve mongodb binaries to the MongoDBOpsManager resource
2725
# The example below provides the binaries for 4.4.0 mongodb (community and enterprise) for ubuntu and rhel (necessary if

0 commit comments

Comments
 (0)