diff options
author | Markus Kullberg <markus.kullberg@nokia.com> | 2016-07-26 09:37:43 +0300 |
---|---|---|
committer | Markus Kullberg <markus.kullberg@nokia.com> | 2016-08-02 10:18:25 +0300 |
commit | b6f3736872b6c06a345da2f16e82d8688c469dd7 (patch) | |
tree | 989dd4f96981b403d2b78bdb4fdaf838d091be94 /lib/post-install-functions.sh | |
parent | 38e8b2674338dd9ffc22b6cb4e222c19f80a39ca (diff) |
Adds overcloud external connectivity test and adds NAT to instack VM if
needed
JIRA: APEX-198
Adds support for baremetal deployments where external connectivity is only
provided via the jumphost. The connectivity test is done by pinging an
external IP (8.8.8.8 by default) for each node. If ping fails for any of
the nodes then NAT is added.
Change-Id: I8d59beb03c3b2998deaec5dc7536fa7a5b1f7718
Signed-off-by: Markus Kullberg <markus.kullberg@nokia.com>
Diffstat (limited to 'lib/post-install-functions.sh')
-rwxr-xr-x | lib/post-install-functions.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/post-install-functions.sh b/lib/post-install-functions.sh index bf0b4446..a7499feb 100755 --- a/lib/post-install-functions.sh +++ b/lib/post-install-functions.sh @@ -123,7 +123,8 @@ fi EOI # for virtual, we NAT public network through Undercloud - if [ "$virtual" == "TRUE" ] && [ "$public_network_ipv6" != "True" ]; then + # same goes for baremetal if only jumphost has external connectivity + if [ "$virtual" == "TRUE" ] || ! test_overcloud_connectivity && [ "$public_network_ipv6" != "True" ]; then if ! configure_undercloud_nat ${public_network_cidr}; then echo -e "${red}ERROR: Unable to NAT undercloud with external net: ${public_network_cidr}${reset}" exit 1 |