c66eae3b10
Change-Id: I3cb6c6a1879bb463da42d5d20fd6bb5d4b067a41 Closes-Bug: #1588722
50 lines
2.0 KiB
YAML
50 lines
2.0 KiB
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/neutron-openvswitch-agent-fake-{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
with_sequence: start=1 end={{ num_nova_fake_per_node }}
|
|
when: inventory_hostname in groups['compute']
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "neutron-openvswitch-agent.json.j2"
|
|
dest: "{{ node_config_directory }}/neutron-openvswitch-agent-fake-{{ item }}/config.json"
|
|
with_sequence: start=1 end={{ num_nova_fake_per_node }}
|
|
when:
|
|
- inventory_hostname in groups['compute']
|
|
- neutron_plugin_agent == "openvswitch"
|
|
|
|
- name: Copying over neutron.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/neutron.conf.j2"
|
|
- "{{ node_config_directory }}/config/global.conf"
|
|
- "{{ node_config_directory }}/config/database.conf"
|
|
- "{{ node_config_directory }}/config/messaging.conf"
|
|
- "{{ node_config_directory }}/config/neutron.conf"
|
|
- "{{ node_config_directory }}/config/neutron/{{ item }}.conf"
|
|
- "{{ node_config_directory }}/config/neutron/{{ inventory_hostname }}/neutron.conf"
|
|
dest: "{{ node_config_directory }}/neutron-openvswitch-agent-fake-{{ item }}/neutron.conf"
|
|
with_sequence: start=1 end={{ num_nova_fake_per_node }}
|
|
when:
|
|
- inventory_hostname in groups['compute']
|
|
- neutron_plugin_agent == "openvswitch"
|
|
|
|
- name: Copying over ml2_conf.ini
|
|
merge_configs:
|
|
vars:
|
|
service_name: "{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/ml2_conf.ini.j2"
|
|
- "{{ node_config_directory }}/config/neutron/ml2_conf.ini"
|
|
- "{{ node_config_directory }}/config/neutron/{{ inventory_hostname }}/neutron.conf"
|
|
dest: "{{ node_config_directory }}/neutron-openvswitch-agent-fake-{{ item }}/ml2_conf.ini"
|
|
with_sequence: start=1 end={{ num_nova_fake_per_node }}
|
|
when:
|
|
- inventory_hostname in groups['compute']
|
|
- neutron_plugin_agent == "openvswitch"
|