---
- name: Ensuring config directories exist
  file:
    path: "{{ node_config_directory }}/{{ item.key }}"
    state: "directory"
    recurse: yes
  when:
    - inventory_hostname in groups[item.value.group]
    - item.value.enabled | bool
  with_dict: "{{ magnum_services }}"

- name: Copying over config.json files for services
  template:
    src: "{{ item.key }}.json.j2"
    dest: "{{ node_config_directory }}/{{ item.key }}/config.json"
  register: magnum_config_jsons
  when:
    - inventory_hostname in groups[item.value.group]
    - item.value.enabled | bool
  with_dict: "{{ magnum_services }}"
  notify:
    - Restart magnum-api container
    - Restart magnum-conductor container

- name: Copying over magnum.conf
  vars:
    service_name: "{{ item.key }}"
  merge_configs:
    sources:
      - "{{ role_path }}/templates/magnum.conf.j2"
      - "{{ node_custom_config }}/global.conf"
      - "{{ node_custom_config }}/magnum.conf"
      - "{{ node_custom_config }}/magnum/{{ item.key }}.conf"
      - "{{ node_custom_config }}/magnum/{{ inventory_hostname }}/magnum.conf"
    dest: "{{ node_config_directory }}/{{ item.key }}/magnum.conf"
  register: magnum_confs
  when:
    - inventory_hostname in groups[item.value.group]
    - item.value.enabled | bool
  with_dict: "{{ magnum_services }}"
  notify:
    - Restart magnum-api container
    - Restart magnum-conductor container

- name: Check if policies shall be overwritten
  local_action: stat path="{{ node_custom_config }}/magnum/policy.json"
  run_once: True
  register: magnum_policy

- name: Copying over existing policy.json
  template:
    src: "{{ node_custom_config }}/magnum/policy.json"
    dest: "{{ node_config_directory }}/{{ item.key }}/policy.json"
  register: magnum_policy_jsons
  when:
    - magnum_policy.stat.exists
    - inventory_hostname in groups[item.value.group]
    - item.value.enabled | bool
  with_dict: "{{ magnum_services }}"
  notify:
    - Restart magnum-api container
    - Restart magnum-conductor container

- name: Check magnum containers
  kolla_docker:
    action: "compare_container"
    common_options: "{{ docker_common_options }}"
    name: "{{ item.value.container_name }}"
    image: "{{ item.value.image }}"
    volumes: "{{ item.value.volumes }}"
    environment: "{{ item.value.environment }}"
  register: check_magnum_containers
  when:
    - action != "config"
    - inventory_hostname in groups[item.value.group]
    - item.value.enabled | bool
  with_dict: "{{ magnum_services }}"
  notify:
    - Restart magnum-api container
    - Restart magnum-conductor container