From 72153edb516c3d36fee4ae72bc9e8d355d87bccc Mon Sep 17 00:00:00 2001 From: Julia Kreger Date: Mon, 15 Jun 2015 19:14:13 -0400 Subject: [PATCH] Fix variable reference in dynamic node deployment Fixed unmatched curly brace that was not caught in testing as the test has not been switched over to the new roles. Change-Id: If29cc03cce881291fdd5cf51a1a37289f1355761 --- playbooks/roles/bifrost-deploy-nodes-dynamic/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/roles/bifrost-deploy-nodes-dynamic/tasks/main.yml b/playbooks/roles/bifrost-deploy-nodes-dynamic/tasks/main.yml index 3bfe59aab..853c91ea8 100644 --- a/playbooks/roles/bifrost-deploy-nodes-dynamic/tasks/main.yml +++ b/playbooks/roles/bifrost-deploy-nodes-dynamic/tasks/main.yml @@ -34,7 +34,7 @@ ironic_url: "{{ ironic_url }}" uuid: "{{ uuid }}" state: present - config_drive: "http://{{ hostvars[inventory_hostname]['ansible_' + network_interface]['ipv4']['address'] }}:{{ nginx_port }/configdrive-{{ uuid }}.iso.gz" + config_drive: "http://{{ hostvars[inventory_hostname]['ansible_' + network_interface]['ipv4']['address'] }}:{{ nginx_port }}/configdrive-{{ uuid }}.iso.gz" instance_info: image_source: "http://{{ hostvars[inventory_hostname]['ansible_' + network_interface]['ipv4']['address'] }}:{{ nginx_port }}/{{deploy_image_filename}}" image_checksum: "{{ test_deploy_image.stat.md5 }}"