57496c4147
Adds role for OpenDaylight deploy. Change-Id: I1e697ea4d3f33aab4b0f55863a377b39eda8f609 Co-Authored-By: Mauricio Lima <mauriciolimab@gmail.com> Co-Authored-By: Jiri Prokes <jirix.x.prokes@intel.com> Co-Authored-By: Eduardo Gonzalez <dabarren@gmail.com> Partially-Implements: blueprint opendaylight-support
66 lines
2.1 KiB
YAML
66 lines
2.1 KiB
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item.key }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
when:
|
|
- item.value.enabled | bool
|
|
- item.value.host_in_groups | bool
|
|
with_dict: "{{ openvswitch_services }}"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item.key }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item.key }}/config.json"
|
|
register: openvswitch_config_jsons
|
|
when:
|
|
- item.value.enabled | bool
|
|
- item.value.host_in_groups | bool
|
|
with_dict: "{{ openvswitch_services }}"
|
|
notify:
|
|
- "Restart {{ item.key }} container"
|
|
|
|
- name: Copying over start-ovs file for openvswitch-vswitchd
|
|
vars:
|
|
service: "{{ openvswitch_services['openvswitch-vswitchd'] }}"
|
|
template:
|
|
src: "{{ role_path }}/templates/start-ovs.j2"
|
|
dest: "{{ node_config_directory }}/openvswitch-vswitchd/start-ovs"
|
|
register: openvswitch_start_ovs
|
|
when:
|
|
- inventory_hostname in groups[service.group]
|
|
- service.enabled | bool
|
|
notify:
|
|
- "Restart openvswitch-vswitchd container"
|
|
|
|
- name: Copying over start-ovsdb-server files for openvswitch-db-server
|
|
vars:
|
|
service: "{{ openvswitch_services['openvswitch-db-server'] }}"
|
|
template:
|
|
src: "{{ role_path }}/templates/start-ovsdb-server.j2"
|
|
dest: "{{ node_config_directory }}/openvswitch-db-server/start-ovsdb-server"
|
|
register: openvswitch_start_ovsdb_server
|
|
when:
|
|
- inventory_hostname in groups[service.group]
|
|
- service.enabled | bool
|
|
notify:
|
|
- "Restart openvswitch-db-server container"
|
|
|
|
- name: Check openvswitch containers
|
|
kolla_docker:
|
|
action: "compare_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ item.value.container_name }}"
|
|
image: "{{ item.value.image }}"
|
|
privileged: "{{ item.value.privileged | default(False) }}"
|
|
volumes: "{{ item.value.volumes }}"
|
|
register: check_openvswitch_containers
|
|
when:
|
|
- action != "config"
|
|
- item.value.enabled | bool
|
|
- item.value.host_in_groups | bool
|
|
with_dict: "{{ openvswitch_services }}"
|
|
notify:
|
|
- "Restart {{ item.key }} container"
|