@@ -260,6 +260,38 @@ namespace
260
260
# Name of the Namespace to use
261
261
namespace: mongodb
262
262
263
+ needsCAInfrastructure
264
+ ---------------------
265
+
266
+ Flag that determines whether |k8s| creates a |k8s-cr| that allows the
267
+ |k8s-op-short| to sign |tls| certificates using the
268
+ :k8sdocs:`certificates.k8s.io </tasks/tls/managing-tls-in-a-cluster/>`
269
+ API.
270
+
271
+ .. example::
272
+
273
+ .. code-block:: yaml
274
+ :emphasize-lines: 1
275
+
276
+ needsCAInfrastructure: true
277
+
278
+ The default value is **true**.
279
+
280
+ operator.deployment_name
281
+ ------------------------
282
+
283
+ Name of the |k8s-op-short| container.
284
+
285
+ The default value is **mongodb-enterprise-operator**.
286
+
287
+ .. example::
288
+
289
+ .. code-block:: yaml
290
+ :emphasize-lines: 2
291
+
292
+ operator:
293
+ deployment_name: mongodb-enterprise-operator
294
+
263
295
operator.env
264
296
------------
265
297
@@ -268,13 +300,47 @@ operator.env
268
300
.. example::
269
301
270
302
.. code-block:: yaml
271
- :emphasize-lines: 3
303
+ :emphasize-lines: 4
272
304
273
305
operator:
274
306
# Execution environment for the operator, dev or prod.
275
307
# Use dev for more verbose logging
276
308
env: prod
277
309
310
+ operator.name
311
+ -------------
312
+
313
+ Name that |k8s| assigns to |k8s-op-short| objects, such as Deployments,
314
+ ServiceAccounts, Roles, and Pods.
315
+
316
+ This value also corresponds to the name of the container registry where
317
+ the |k8s-op-short| is located.
318
+
319
+ The default value is **mongodb-enterprise-operator**.
320
+
321
+ .. example::
322
+
323
+ .. code-block:: yaml
324
+ :emphasize-lines: 2
325
+
326
+ operator:
327
+ name: mongodb-enterprise-operator
328
+
329
+ operator.version
330
+ ----------------
331
+
332
+ Version of the |k8s-op-short| that you want to deploy.
333
+
334
+ The default value is **{+version+}**.
335
+
336
+ .. example::
337
+
338
+ .. code-block:: yaml
339
+ :emphasize-lines: 2
340
+
341
+ operator:
342
+ version: {+version+}
343
+
278
344
operator.watchNamespace
279
345
-----------------------
280
346
@@ -497,3 +563,21 @@ registry.opsManager
497
563
498
564
registry:
499
565
opsManager: registry.connect.redhat.com/mongodb
566
+
567
+ subresourceEnabled
568
+ ------------------
569
+
570
+ Flag that indicates whether subresources can be defined in the
571
+ |k8s-op-short| |k8s-crd|.
572
+
573
+ Set this setting to **false** if installing the |k8s-op-short|
574
+ CustomResourceDefinition fails on an OpenShift 3.11 cluster.
575
+
576
+ The default value is **true**.
577
+
578
+ .. example::
579
+
580
+ .. code-block:: yaml
581
+ :emphasize-lines: 1
582
+
583
+ subresourceEnabled: true
0 commit comments