Skip to content
Snippets Groups Projects
check-containers.yml 906 B
Newer Older
- name: Check nova-cell containers
  become: true
  kolla_docker:
    action: "compare_container"
    common_options: "{{ docker_common_options }}"
    name: "{{ item.value.container_name }}"
    image: "{{ item.value.image }}"
Michal Nasiadka's avatar
Michal Nasiadka committed
    environment: "{{ item.value.environment | default(omit) }}"
    pid_mode: "{{ item.value.pid_mode | default('') }}"
    cgroupns_mode: "{{ item.value.cgroupns_mode | default(omit) }}"
    ipc_mode: "{{ item.value.ipc_mode | default(omit) }}"
    privileged: "{{ item.value.privileged | default(False) }}"
    volumes: "{{ item.value.volumes | reject('equalto', '') | list }}"
    dimensions: "{{ item.value.dimensions }}"
    healthcheck: "{{ item.value.healthcheck | default(omit) }}"
  when:
    - inventory_hostname in groups[item.value.group]
    - item.value.enabled | bool
  with_dict: "{{ nova_cell_services }}"
  notify:
    - "Restart {{ item.key }} container"