Skip to content
Snippets Groups Projects
Unverified Commit 391f49c9 authored by Erik Berg's avatar Erik Berg
Browse files

neutron: Use assert on checks for readability

assert will also fail when we're not meeting the conditions, makes
clear what we're actually testing, and isn't listed as a skipped task
when the condition is ok.

Change-Id: I3e396f1c605d5d2644e757bbb3d954efe537b65e
parent 2b88144c
No related branches found
No related tags found
No related merge requests found
...@@ -25,31 +25,30 @@ ...@@ -25,31 +25,30 @@
- inventory_hostname in groups['neutron-server'] - inventory_hostname in groups['neutron-server']
- name: Checking number of network agents - name: Checking number of network agents
fail: assert:
msg: "Number of network agents are less than two when enabling agent ha" that:
- groups['neutron-dhcp-agent'] | length > 1
- groups['neutron-l3-agent'] | length > 1
fail_msg: "Number of network agents are less than two when enabling agent ha"
changed_when: false changed_when: false
run_once: True run_once: True
when: when:
- enable_neutron_agent_ha | bool - enable_neutron_agent_ha | bool
- groups['neutron-dhcp-agent'] | length < 2
or groups['neutron-l3-agent'] | length < 2
- name: Checking tenant network types - name: Checking tenant network types
assert:
that: item in type_drivers
fail_msg: "Tenant network type '{{ item }}' is not in type drivers [{{ neutron_type_drivers }}]"
with_items: "{{ tenant_network_types }}"
vars: vars:
type_drivers: "{{ neutron_type_drivers.replace(' ', '').split(',') | reject('equalto', '') | list }}" type_drivers: "{{ neutron_type_drivers.replace(' ', '').split(',') | reject('equalto', '') | list }}"
tenant_network_types: "{{ neutron_tenant_network_types.replace(' ', '').split(',') | reject('equalto', '') | list }}" tenant_network_types: "{{ neutron_tenant_network_types.replace(' ', '').split(',') | reject('equalto', '') | list }}"
fail:
msg: "Tenant network type '{{ item }}' is not in type drivers [{{ neutron_type_drivers }}]"
changed_when: false
when: item not in type_drivers
run_once: true run_once: true
with_items: "{{ tenant_network_types }}"
- name: Checking whether Ironic enabled - name: Checking whether Ironic enabled
fail: assert:
msg: "Ironic must be enabled when using networking-baremetal/ironic-neutron-agent" that: enable_ironic | bool
changed_when: false fail_msg: "Ironic must be enabled when using networking-baremetal/ironic-neutron-agent"
run_once: True run_once: True
when: when:
- enable_ironic_neutron_agent | bool - enable_ironic_neutron_agent | bool
- not (enable_ironic | bool)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment