Skip to content

Commit e7abe1f

Browse files
(DOCSP-9738): Changes to Ops Manager status (#235)
* (DOCSP-9738): Changes to Ops Manager status * (DOCSP-9738): fix typo * (DOCSP-9738): tech review feedback * (DOCSP-9738): tech review pt 2 * (DOCSP-9738): tech review feedback pt 3
1 parent c2a4547 commit e7abe1f

File tree

2 files changed

+58
-33
lines changed

2 files changed

+58
-33
lines changed

source/includes/steps-deploy-k8s-opsmgr.yaml

Lines changed: 52 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -298,39 +298,53 @@ content: |
298298
299299
status:
300300
applicationDatabase:
301-
lastTransition: "2019-11-15T19:48:01Z"
301+
lastTransition: "2020-04-01T09:49:22Z"
302302
message: AppDB Statefulset is not ready yet
303303
phase: Reconciling
304304
type: ""
305305
version: ""
306+
backup:
307+
phase: ""
306308
opsManager:
307-
lastTransition: "2019-11-15T19:48:01Z"
308-
message: Ops Manager is still starting
309-
phase: Reconciling
310-
version: ""
309+
phase: ""
310+
311+
The |k8s-op-short| reconciles the resources in the following order:
312+
313+
1. Application Database.
314+
#. |onprem|.
315+
#. Backup.
311316
312-
After the resource completes the ``Reconciling`` phase, the command
313-
returns the following output under the ``status`` field:
317+
The |k8s-op-short| doesn't reconcile a resource until the preceding
318+
one enters the ``Running`` phase.
319+
320+
After the |onprem| resource completes the ``Reconciling`` phase, the
321+
command returns the following output under the ``status`` field if you
322+
enabled backup:
314323
315324
.. code-block:: yaml
316325
:copyable: false
317326
318327
status:
319328
applicationDatabase:
320-
lastTransition: "2019-12-06T18:23:22Z"
329+
lastTransition: "2020-04-01T09:50:20Z"
321330
members: 3
322331
phase: Running
323332
type: ReplicaSet
324-
version: 4.2.2-ent
333+
version: 4.2.0
334+
backup:
335+
lastTransition: "2020-04-01T09:57:42Z"
336+
message: The MongoDB object <namespace>/<oplogresourcename>
337+
doesn't exist
338+
phase: Pending
325339
opsManager:
326-
lastTransition: "2019-12-06T18:23:26Z"
327-
message: The MongoDB object namespace/oplogdbname doesn't exist
328-
phase: Pending
329-
url: http://om-svc.dev.svc.cluster.local:8080
330-
version: ""
340+
lastTransition: "2020-04-01T09:57:40Z"
341+
phase: Running
342+
replicas: 1
343+
url: http://om-svc.cloudqa.svc.cluster.local:8080
344+
version: 4.2.8
331345
332-
The |application| remains in a ``Pending`` state until you configure
333-
the Backup databases.
346+
Backup remains in a ``Pending`` state until you configure the Backup
347+
databases.
334348
335349
.. tip::
336350
@@ -427,21 +441,26 @@ content: |
427441
428442
.. code-block:: yaml
429443
:copyable: false
430-
:emphasize-lines: 12
444+
:emphasize-lines: 17
431445
432446
status:
433447
applicationDatabase:
434-
lastTransition: "2019-12-06T18:23:22Z"
448+
lastTransition: "2020-04-01T10:00:32Z"
435449
members: 3
436450
phase: Running
437451
type: ReplicaSet
438-
version: 4.2.2-ent
452+
version: 4.2.0
453+
backup:
454+
lastTransition: "2020-04-01T09:57:42Z"
455+
message: The MongoDB object <namespace>/<oplogresourcename>
456+
doesn't exist
457+
phase: Pending
439458
opsManager:
440-
lastTransition: "2019-12-06T18:23:26Z"
441-
message: The MongoDB object namespace/oplogdbname doesn't exist
442-
phase: Pending
443-
url: http://om-svc.dev.svc.cluster.local:8080
444-
version: ""
459+
lastTransition: "2020-04-01T09:57:40Z"
460+
phase: Running
461+
replicas: 1
462+
url: http://om-svc.cloudqa.svc.cluster.local:8080
463+
version: 4.2.8
445464
446465
.. include:: /includes/admonitions/data-url-config-map-external-dbs.rst
447466
@@ -503,17 +522,21 @@ content: |
503522
504523
status:
505524
applicationDatabase:
506-
lastTransition: "2019-12-06T17:46:15Z"
525+
lastTransition: "2020-04-01T10:00:32Z"
507526
members: 3
508527
phase: Running
509528
type: ReplicaSet
510-
version: 4.2.2-ent
529+
version: 4.2.0
530+
backup:
531+
lastTransition: "2020-04-01T10:00:53Z"
532+
phase: Running
533+
version: 4.2.8
511534
opsManager:
512-
lastTransition: "2019-12-06T17:46:32Z"
535+
lastTransition: "2020-04-01T10:00:34Z"
513536
phase: Running
514537
replicas: 1
515-
url: http://om-backup-svc.dev.svc.cluster.local:8080
516-
version: 4.2.6
538+
url: http://om-svc.cloudqa.svc.cluster.local:8080
539+
version: 4.2.8
517540
518541
See :doc:`/reference/troubleshooting` for information about the
519542
resource deployment statuses.

source/reference/troubleshooting.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,12 @@ invoke one of the following commands:
2626

2727
kubectl get <resource-name> -n <namespace> -o yaml
2828

29-
The ``status.applicationDatabase.phase`` field displays the
30-
Application Database resource deployment status. The
31-
``status.opsManager.phase`` field displays the |onprem| resource
32-
deployment status.
29+
- The ``status.applicationDatabase.phase`` field displays the
30+
Application Database resource deployment status.
31+
- The ``status.backup.phase`` displays the backup daemon resource
32+
deployment status.
33+
- The ``status.opsManager.phase`` field displays the |onprem| resource
34+
deployment status.
3335

3436
- For MongoDB resource deployments:
3537

0 commit comments

Comments
 (0)