fdea19a305
Currently there are a few services that perform host configuration tasks. This is done in config.yml. This means that these changes are performed during 'kolla-ansible genconfig', when we might expect not to be making any changes to the remote system. This change separates out these host configuration tasks into a config-host.yml file, which is included directly from deploy.yml. One change in behaviour is that this prevents these tasks from running during an upgrade or genconfig. This is probably what we want, but we should be careful when any of these host configuration tasks are changed, to ensure they are applied during an upgrade if necessary. Change-Id: I001defc75d1f1e6caa9b1e11246abc6ce17c775b Closes-Bug: #1860161
58 lines
1.7 KiB
YAML
58 lines
1.7 KiB
YAML
---
|
|
- name: Ensuring config directories exist
|
|
become: true
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item.key }}"
|
|
state: "directory"
|
|
owner: "{{ config_owner_user }}"
|
|
group: "{{ config_owner_group }}"
|
|
mode: "0770"
|
|
when:
|
|
- item.value.enabled | bool
|
|
- item.value.host_in_groups | bool
|
|
with_dict: "{{ openvswitch_services }}"
|
|
|
|
- name: Copying over config.json files for services
|
|
become: true
|
|
template:
|
|
src: "{{ item.key }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item.key }}/config.json"
|
|
mode: "0660"
|
|
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
|
|
become: true
|
|
vars:
|
|
service: "{{ openvswitch_services['openvswitch-vswitchd'] }}"
|
|
template:
|
|
src: "{{ role_path }}/templates/start-ovs.j2"
|
|
dest: "{{ node_config_directory }}/openvswitch-vswitchd/start-ovs"
|
|
mode: "0770"
|
|
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
|
|
become: true
|
|
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"
|
|
mode: "0770"
|
|
when:
|
|
- inventory_hostname in groups[service.group]
|
|
- service.enabled | bool
|
|
notify:
|
|
- "Restart openvswitch-db-server container"
|
|
|
|
- include_tasks: check-containers.yml
|
|
when: kolla_action != "config"
|