Fix commands in section Configure controller-1

- Correct command at line 309 per fix #1 described in comment
  #7 of issue #1844656
- Remove while loop at lines 416-417 per fix #2 described in
  comment #7 of issue #1844656

Closes-Bug: #1844656

Change-Id: I447332d1134ac19164e7a95c5c7ac50562b00951
Signed-off-by: Kristal Dale <kristal.dale@intel.com>
This commit is contained in:
Kristal Dale 2019-10-03 12:10:11 -07:00
parent 634850b5b6
commit 9ccd43c789

View File

@ -306,7 +306,7 @@ Configure controller-1
MGMT_IF=<MGMT-PORT>
system host-if-modify controller-1 $OAM_IF -c platform
system interface-network-assign controller-1 $OAM_IF oam
system interface-network-assign controller-1 $MGMT_IF cluster-host
system interface-network-assign controller-1 mgmt0 cluster-host
#. Configure data interfaces for controller-1. Use the DATA port names, for example
eth0, applicable to your deployment environment.
@ -413,9 +413,6 @@ OpenStack-specific host configuration
system host-pv-add ${COMPUTE} nova-local ${NOVA_PARTITION_UUID}
sleep 2
echo ">>> Wait for partition $NOVA_PARTITION_UUID to be ready."
while true; do system host-disk-partition-list $COMPUTE --nowrap | grep $NOVA_PARTITION_UUID | grep Ready; if [ $? -eq 0 ]; then break; fi; sleep 1; done
-------------------
Unlock controller-1
-------------------