@@ -260,6 +260,38 @@ namespace
260260 # Name of the Namespace to use
261261 namespace: mongodb
262262
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+
263295operator.env
264296------------
265297
@@ -268,13 +300,47 @@ operator.env
268300.. example::
269301
270302 .. code-block:: yaml
271- :emphasize-lines: 3
303+ :emphasize-lines: 4
272304
273305 operator:
274306 # Execution environment for the operator, dev or prod.
275307 # Use dev for more verbose logging
276308 env: prod
277309
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+
278344operator.watchNamespace
279345-----------------------
280346
@@ -497,3 +563,21 @@ registry.opsManager
497563
498564 registry:
499565 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