From 153fc3e2380a5cdc85d7866f170653e5e9df81f0 Mon Sep 17 00:00:00 2001 From: Manuel Buil Date: Mon, 5 Aug 2019 14:06:28 +0200 Subject: Remove hardcoded ips We should use the Ansible variables whenever possible instead of hardcoding values like IPs deploy-scenario:k8-calico-nofeature installer-type:osh Change-Id: Iee5f179b0b36d2fcbf9b2eca82a3c31cefd83229 Signed-off-by: Manuel Buil --- xci/installer/osh/playbooks/roles/install-osh-mini/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xci/installer/osh/playbooks/roles/install-osh-mini/tasks') diff --git a/xci/installer/osh/playbooks/roles/install-osh-mini/tasks/main.yml b/xci/installer/osh/playbooks/roles/install-osh-mini/tasks/main.yml index e3fa2ddf..eb920a8e 100644 --- a/xci/installer/osh/playbooks/roles/install-osh-mini/tasks/main.yml +++ b/xci/installer/osh/playbooks/roles/install-osh-mini/tasks/main.yml @@ -96,7 +96,7 @@ chdir: /root/repos/openstack-helm - name: Copy script to the worker node - command: "scp -o \"StrictHostKeyChecking no\" tools/deployment/developer/ceph/170-setup-gateway.sh root@192.168.122.4:170-setup-gateway.sh" + command: "scp -o \"StrictHostKeyChecking no\" tools/deployment/developer/ceph/170-setup-gateway.sh root@{{ hostvars.node1.ip }}:170-setup-gateway.sh" changed_when: false args: chdir: /root/repos/openstack-helm @@ -104,7 +104,7 @@ - name: Setup the gateway to the public network at worker node command: /root/170-setup-gateway.sh changed_when: false - delegate_to: 192.168.122.4 + delegate_to: node1 - name: Add a route from opnfv to worker node for the public network command: ip route add 172.24.4.0/24 via 192.168.122.4 -- cgit 1.2.3-korg