Skip to content
Snippets Groups Projects
Commit 1243337a authored by Radosław Piliszek's avatar Radosław Piliszek
Browse files

CI: Discern between Ironic client and grep failure

Pipe hid an issue that Ironic client was not available in CI,
making it look as if fake-hardware driver was not usable.

This commit applies separation of concerns to easily discern
between the two failures and provide better debugging experience.

Change-Id: Iac3d84b7d707b84a8426c8d787b29a368ff7ae85
Related-Bug: #1872481
parent b1db4f5c
No related merge requests found
......@@ -99,12 +99,16 @@ function test_ironic_logged {
. ~/openstackclient-venv/bin/activate
# Smoke test ironic API.
if ! openstack baremetal driver list | grep fake-hardware; then
local baremetal_driver_list
baremetal_driver_list=$(openstack baremetal driver list)
openstack baremetal node list
openstack baremetal port list
# Sanity check.
if ! echo "$baremetal_driver_list" | grep fake-hardware; then
echo "No active conductors with fake-hardware driver"
exit 1
fi
openstack baremetal node list
openstack baremetal port list
create_resources
wait_for_placement_resources
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment