Set container_name as host_var in test inventory

The connection plugin no longer falls back on using the
inventory_hostname as the container_name. Set container_name as a host
var for each container in the test inventory.

Change-Id: Ib1bac8c596e97505e537095474aa9aca208eea41
This commit is contained in:
Jimmy McCrory 2018-10-20 15:28:29 -07:00
parent 8002ca2204
commit 3f38edbf32
4 changed files with 3 additions and 1 deletions

View File

@ -13,7 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
container_name: "{{ inventory_hostname }}"
container_networks:
management_address:
address: "{{ ansible_host }}"

View File

@ -2,3 +2,4 @@
ansible_host: 10.1.0.2
ansible_become: True
ansible_user: root
container_name: container1

View File

@ -2,3 +2,4 @@
ansible_host: 10.1.0.3
ansible_become: True
ansible_user: root
container_name: container2

View File

@ -2,3 +2,4 @@
ansible_host: 10.1.0.4
ansible_become: True
ansible_user: root
container_name: container3