--- - name: Ensuring config directories exist file: path: "{{ node_config_directory }}/{{ item.key }}" state: "directory" recurse: yes when: inventory_hostname in groups[item.value.group] with_dict: "{{ congress_services }}" - name: Copying over config.json files for services template: src: "{{ item.key }}.json.j2" dest: "{{ node_config_directory }}/{{ item.key }}/config.json" register: congress_config_jsons when: - inventory_hostname in groups[item.value.group] - item.value.enabled | bool with_dict: "{{ congress_services }}" notify: - "Restart {{ item.key }} container" - name: Copying over congress.conf vars: service_name: "{{ item.key }}" merge_configs: sources: - "{{ role_path }}/templates/congress.conf.j2" - "{{ node_custom_config }}/global.conf" - "{{ node_custom_config }}/congress.conf" - "{{ node_custom_config }}/congress/{{ item.key }}.conf" - "{{ node_custom_config }}/congress/{{ inventory_hostname }}/congress.conf" dest: "{{ node_config_directory }}/{{ item.key }}/congress.conf" register: congress_confs when: - inventory_hostname in groups[item.value.group] - item.value.enabled | bool with_dict: "{{ congress_services }}" notify: - "Restart {{ item.key }} container" - name: Check if policies shall be overwritten local_action: stat path="{{ node_custom_config }}/congress/policy.json" run_once: True register: congress_policy - name: Copying over existing policy.json template: src: "{{ node_custom_config }}/congress/policy.json" dest: "{{ node_config_directory }}/{{ item.key }}/policy.json" register: congress_policy_jsons when: - congress_policy.stat.exists - inventory_hostname in groups[item.value.group] - item.value.enabled | bool with_dict: "{{ congress_services }}" notify: - "Restart {{ item.key }} container" - name: Check congress containers kolla_docker: action: "compare_container" common_options: "{{ docker_common_options }}" name: "{{ item.value.container_name }}" image: "{{ item.value.image }}" volumes: "{{ item.value.volumes }}" register: check_congress_containers when: - action != "config" - inventory_hostname in groups[item.value.group] - item.value.enabled | bool with_dict: "{{ congress_services }}" notify: - "Restart {{ item.key }} container"