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: docs_user/modules/proc_deploying-backend-services.adoc
+16-8Lines changed: 16 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ endif::[]
26
26
27
27
* If you enabled TLS everywhere (TLS-e) on the {OpenStackShort} environment, you must copy the `tls` root CA from the {OpenStackShort} environment to the `rootca-internal` issuer.
28
28
29
-
* There are free PVs available for MariaDB and RabbitMQ.
29
+
* There are free PVs available for Galera and RabbitMQ.
30
30
ifeval::["{build}" != "downstream"]
31
31
+
32
32
For developer/CI environments driven by install_yamls, make sure
@@ -415,18 +415,26 @@ spec:
415
415
416
416
.Verification
417
417
418
-
* Verify that MariaDB and RabbitMQ are running for all defined cells:
418
+
* Verify that the Galera and RabbitMQ status is `Running` for all defined cells:
419
419
+
420
+
[source,yaml]
420
421
----
421
422
$ RENAMED_CELLS="cell1 cell2 cell3"
422
-
$ oc get pod openstack-galera-0 -o jsonpath='{.status.phase}{"\n"}' | grep Running
423
-
$ oc get pod rabbitmq-server-0 -o jsonpath='{.status.phase}{"\n"}' | grep Running
423
+
$ oc get pod openstack-galera-0 -o jsonpath='{.status.phase}{"\n"}'
424
+
$ oc get pod rabbitmq-server-0 -o jsonpath='{.status.phase}{"\n"}'
424
425
$ for CELL in $(echo $RENAMED_CELLS); do
425
-
oc get pod openstack-$CELL-galera-0 -o jsonpath='{.status.phase}{"\n"}' | grep Running
426
-
oc get pod rabbitmq-$CELL-server-0 -o jsonpath='{.status.phase}{"\n"}' | grep Running
427
-
done
426
+
>oc get pod openstack-$CELL-galera-0 -o jsonpath='{.status.phase}{"\n"}'
427
+
>oc get pod rabbitmq-$CELL-server-0 -o jsonpath='{.status.phase}{"\n"}'
428
+
> done
428
429
----
429
430
+
430
431
The given cells names are later referred to by using the environment variable `RENAMED_CELLS`.
431
432
432
-
* Verify that you can access the `OpenStackClient` pod. For more information, see link:{defaultURL}/maintaining_the_red_hat_openstack_services_on_openshift_deployment/assembly_accessing-the-rhoso-cloud#proc_accessing-the-OpenStackClient-pod_cloud-access-admin[Accessing the OpenStackClient pod] in _Maintaining the {rhos_long_noacro} deployment_.
433
+
* Verify that the `OpenStackControlPlane` CR is waiting for deployment
434
+
of the `openstackclient` pod:
435
+
+
436
+
----
437
+
$ oc get OpenStackControlPlane openstack
438
+
NAME STATUS MESSAGE
439
+
openstack Unknown OpenStackControlPlane Client not started
0 commit comments