From 175c65e4900c9cc68917242fd7c9677fc32a2087 Mon Sep 17 00:00:00 2001 From: Jeffrey Zhang Date: Fri, 20 Oct 2017 16:13:21 +0800 Subject: [PATCH] Remove check flat network type task in ironic pre-check.yml flat network type is not mandatory. There are two cases, 1. ironic with flat network: we can use neutron vlan network to provision baremetal nodes, as long as the interface of the baremetal nodes are configured to use the same vlan. 2. ironic with neutron network: all provision and cleaning_network can be vlan type and no flat is needed at all. So we should remove the task. Change-Id: I176ded6d2a8b14e350f665f63bc37eb488d32679 Closes-Bug: #1725170 --- ansible/roles/ironic/tasks/precheck.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ansible/roles/ironic/tasks/precheck.yml b/ansible/roles/ironic/tasks/precheck.yml index dca50cf8d6..2ef0530544 100644 --- a/ansible/roles/ironic/tasks/precheck.yml +++ b/ansible/roles/ironic/tasks/precheck.yml @@ -40,9 +40,3 @@ with_items: - "ironic-agent.kernel" - "ironic-agent.initramfs" - -- name: Looking for 'flat' in tenant network types - local_action: fail msg="'flat' is not in neutron_tenant_network_types [{{ neutron_tenant_network_types }}]" - changed_when: false - when: neutron_tenant_network_types.find('flat') == -1 - run_once: true