9a77fb1ca0
Makes nova-libvirt container always run in 'host' CgroupnsMode to ensure it works. Change-Id: I75105baf434977c68bc5c8ca1f5213e602c52c8c
23 lines
892 B
YAML
23 lines
892 B
YAML
---
|
|
- 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 }}"
|
|
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"
|