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
Copy file name to clipboardExpand all lines: source/reference/troubleshooting.txt
+21-10Lines changed: 21 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -109,14 +109,20 @@ The following key-value pairs describe the resource deployment statuses:
109
109
* - ``link``
110
110
- Deployment |url| in |mms|.
111
111
112
+
* - ``backup.statusName``
113
+
- If you enabled continuous backups with :setting:`spec.backup.mode`
114
+
in |k8s| for your MongoDB resource, this field indicates
115
+
the status of the backup, such as ``backup.statusName:"STARTED"``.
116
+
Possible values are ``STARTED``, ``STOPPED``, and ``TERMINATED``.
117
+
112
118
* - Resource specific fields
113
119
- For descriptions of these fields, see
114
120
:doc:`/reference/k8s-operator-specification`.
115
121
116
122
.. example::
117
123
118
-
If you want to see what the status of a replica set named
119
-
``my-replica-set`` in the ``developer`` namespace, run:
124
+
To see the status of a replica set named ``my-replica-set`` in
125
+
the ``developer`` namespace, run:
120
126
121
127
.. code-block:: sh
122
128
@@ -192,8 +198,7 @@ invoke this command:
192
198
193
199
.. example::
194
200
195
-
If your :term:`replica set` is labeled ``myrs``, the |k8s-pod| log
196
-
command is invoked as:
201
+
If your :term:`replica set` is labeled ``myrs``, run:
197
202
198
203
.. code-block:: sh
199
204
@@ -214,7 +219,7 @@ To view all |k8s-mdbrsc| specifications in the provided
214
219
215
220
.. example::
216
221
217
-
To read details about the ``dublin`` standalone resource, invoke
222
+
To read details about the ``dublin`` standalone resource, run
218
223
this command:
219
224
220
225
.. code-block:: shell
@@ -279,7 +284,7 @@ those pods.
279
284
my-replica-set-2 0/1 Pending 0 2h
280
285
281
286
``my-replica-set-2`` is stuck in the ``Pending`` stage. To gather
282
-
more data on the error, run the following:
287
+
more data on the error, run:
283
288
284
289
.. code-block:: sh
285
290
:copyable: false
@@ -289,7 +294,9 @@ those pods.
289
294
290
295
<describe output omitted>
291
296
292
-
Warning FailedScheduling 15s (x3691 over 3h) default-scheduler 0/3 nodes are available: 1 node(s) had taints that the pod didn't tolerate, 2 Insufficient memory.
297
+
Warning FailedScheduling 15s (x3691 over 3h) default-scheduler
298
+
0/3 nodes are available: 1 node(s) had taints that the pod
299
+
didn't tolerate, 2 Insufficient memory.
293
300
294
301
The output indicates an error in memory allocation.
295
302
@@ -321,14 +328,18 @@ those pods.
321
328
Replace a ConfigMap to Reflect Changes
322
329
---------------------------------------
323
330
324
-
If you are unable to modify or redeploy an already-deployed configMap file using the *kubectl apply* command, invoke the following:
331
+
If you cannot modify or redeploy an already-deployed resource
332
+
:file:`ConfigMap` file using the *kubectl apply* command, run:
325
333
326
334
.. code-block:: shell
327
335
328
336
kubectl replace -f <my-config-map>.yaml
329
337
330
-
This will delete and re-create a resource. This command is useful in cases where you need to update resource files that cannot be updated
331
-
once initialized or want to make an immediate recursive change.
338
+
This deletes and re-creates the :file:`ConfigMap` resource file.
339
+
340
+
This command is useful in cases where you want to make an immediate
341
+
recursive change, or you need to update resource files that cannot
0 commit comments