Rename get-undercloud-ip.sh --> get-domain-ip.sh

Context: https://trello.com/c/qgIz0V08

This commit simply renames the get-undercloud-ip.sh
script to be more generically named, as in the
libvirt-nodepool reproducer (where it's used) it is
not limited to UC.

Note: not touching the libvirt/setup/undercloud
role's version of this script (which is the same) is
intentional, and is intended to mitigate risk.

Modifying parts of TQ not utilized by libvirt nodepool
reproducer is out of scope for this commit.

Depends-On: https://review.openstack.org/#/c/565280
Change-Id: I51040db2e85296229ff98e5c691c39af8d276c0a
This commit is contained in:
Matt Young
2018-05-01 16:03:54 -04:00
parent 55d4ba4fb9
commit 5767085f0a
2 changed files with 2 additions and 2 deletions

View File

@@ -128,7 +128,7 @@
## need to find a way to make these next tasks generic
- name: Get libvirt nodepool IP addresses
script: "get-undercloud-ip.sh subnode-0"
script: "get-domain-ip.sh subnode-0"
register: "subnode_0_ip_result"
until: "subnode_0_ip_result|success"
retries: 20
@@ -169,7 +169,7 @@
become: true
- name: Get libvirt nodepool IP addresses
script: "get-undercloud-ip.sh subnode-1"
script: "get-domain-ip.sh subnode-1"
register: "subnode_1_ip_result"
until: "subnode_1_ip_result|success"
retries: 20