From 9ccd43c789804e3082657a6c4b335688d32b8958 Mon Sep 17 00:00:00 2001 From: Kristal Dale Date: Thu, 3 Oct 2019 12:10:11 -0700 Subject: [PATCH] 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 --- .../r2_release/bare_metal/aio_duplex_install_kubernetes.rst | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/doc/source/deploy_install_guides/r2_release/bare_metal/aio_duplex_install_kubernetes.rst b/doc/source/deploy_install_guides/r2_release/bare_metal/aio_duplex_install_kubernetes.rst index 3e2e94e98..532a88cb1 100644 --- a/doc/source/deploy_install_guides/r2_release/bare_metal/aio_duplex_install_kubernetes.rst +++ b/doc/source/deploy_install_guides/r2_release/bare_metal/aio_duplex_install_kubernetes.rst @@ -306,7 +306,7 @@ Configure controller-1 MGMT_IF= 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 -------------------