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
StatefulSetConfiguration holds the optional custom StatefulSet
171
-
that should be merged into the operator created one.
267
+
StatefulSetSpec which the operator will apply to the MongoDB Search StatefulSet at the end of the reconcile loop. Use to provide necessary customizations,
268
+
which aren't exposed as fields in the MongoDBSearch.spec.
172
269
properties:
173
270
metadata:
174
271
description: StatefulSetMetadataWrapper is a wrapper around Labels
@@ -190,6 +287,9 @@ spec:
190
287
- spec
191
288
type: object
192
289
version:
290
+
description: Optional version of MongoDB Search component (mongot).
291
+
If not set, then the operator will set the most appropriate version
Copy file name to clipboardExpand all lines: charts/mongodb-kubernetes/values.yaml
+10-13Lines changed: 10 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ operator:
22
22
deployment_name: mongodb-kubernetes-operator
23
23
24
24
# Version of mongodb-kubernetes-operator
25
-
version: 1.3.0
25
+
version: 1.4.0
26
26
27
27
# The Custom Resources that will be watched by the Operator. Needs to be changed if only some of the CRDs are installed
28
28
watchedResources:
@@ -123,24 +123,24 @@ operator:
123
123
## Database
124
124
database:
125
125
name: mongodb-kubernetes-database
126
-
version: 1.3.0
126
+
version: 1.4.0
127
127
128
128
initDatabase:
129
129
name: mongodb-kubernetes-init-database
130
-
version: 1.3.0
130
+
version: 1.4.0
131
131
132
132
## Ops Manager
133
133
opsManager:
134
134
name: mongodb-enterprise-ops-manager-ubi
135
135
136
136
initOpsManager:
137
137
name: mongodb-kubernetes-init-ops-manager
138
-
version: 1.3.0
138
+
version: 1.4.0
139
139
140
140
## Application Database
141
141
initAppDb:
142
142
name: mongodb-kubernetes-init-appdb
143
-
version: 1.3.0
143
+
version: 1.4.0
144
144
145
145
agent:
146
146
name: mongodb-agent
@@ -173,7 +173,6 @@ registry:
173
173
initOpsManager: quay.io/mongodb
174
174
opsManager: quay.io/mongodb
175
175
initAppDb: quay.io/mongodb
176
-
appDb: quay.io/mongodb
177
176
agent: quay.io/mongodb
178
177
179
178
# This is only used by the MongoDBCommunity resource reconciler - START
@@ -200,7 +199,6 @@ community:
200
199
version: 108.0.2.8729-1
201
200
registry:
202
201
agent: quay.io/mongodb
203
-
name: mongodb-database
204
202
resource:
205
203
name: mongodb-replica-set
206
204
version: 4.4.0
@@ -220,9 +218,8 @@ community:
220
218
221
219
# MongoDBSearch settings
222
220
search:
223
-
community:
224
-
# Full Search container image url used for the MongoDB Community Search container will be constructed as {search.community.repo}/{search.community.name}:{search.community.version}
225
-
repo: quay.io/mongodb
226
-
name: mongodb-search-community
227
-
# default MongoDB Search version used; can be overridden by setting MongoDBSearch.spec.version field.
228
-
version: 1.47.0
221
+
# Full Search container image url used for the MongoDB Search container will be constructed as {search.repo}/{search.name}:{search.version}
222
+
repo: quay.io/mongodb
223
+
name: mongodb-search
224
+
# default MongoDB Search version used; can be overridden by setting MongoDBSearch.spec.version field.
0 commit comments