From 2694aee133cc5cc817e265dc30a82ec7add1cbc8 Mon Sep 17 00:00:00 2001 From: Mike Carden Date: Fri, 6 Jan 2017 08:56:53 +1100 Subject: [PATCH] Remove duplicated key The ironic_openstack_driver_list key is being defined twice. This results in a warning during task execution and the adoption of the last defined value. Removing the first defined value here to maintain current behavior. If the desired behavior is the opposite, I will reinstate the first and delete the second. Change-Id: I0f7526230c5192611daefb1934b627aef463f053 --- defaults/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/defaults/main.yml b/defaults/main.yml index 8f922d11..1e55c053 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -112,7 +112,6 @@ ironic_keystone_auth_plugin: password # ironic_neutron_cleaning_network_name: "Name of cleaning network in neutron" # Integrated Openstack configuration -ironic_openstack_driver_list: "pxe_ipmitool, agent_ipmitool" ironic_enabled_network_interfaces_list: "flat,noop{{ (ironic_neutron_provisioning_network_uuid is defined) | ternary(',neutron','') }}" ironic_default_network_interface: "{{ (ironic_neutron_provisioning_network_uuid is defined) | ternary('neutron','flat') }}" ironic_openstack_driver_list: agent_ipmitool