910f9bd36f
First part of patchset: https://review.opendev.org/c/openstack/kolla-ansible/+/799229/ in which was suggested to split patch into smaller ones. This implements kolla_container_engine variable in command calls of docker,so later on it can be also used for podman without further change. Signed-off-by: Ivan Halomi <i.halomi@partner.samsung.com> Change-Id: Ic30b67daa2e215524096ad1f4385c569e3d41b95
45 lines
1.4 KiB
YAML
45 lines
1.4 KiB
YAML
---
|
|
- name: Restart openvswitch-db-server container
|
|
vars:
|
|
service_name: "openvswitch-db-server"
|
|
service: "{{ openvswitch_services[service_name] }}"
|
|
become: true
|
|
kolla_docker:
|
|
action: "recreate_or_restart_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ service.container_name }}"
|
|
image: "{{ service.image }}"
|
|
volumes: "{{ service.volumes }}"
|
|
dimensions: "{{ service.dimensions }}"
|
|
healthcheck: "{{ service.healthcheck }}"
|
|
when:
|
|
- kolla_action != "config"
|
|
notify:
|
|
- Waiting for openvswitch_db service to be ready
|
|
|
|
- name: Waiting for openvswitch_db service to be ready
|
|
become: true
|
|
command: "{{ kolla_container_engine }} exec openvswitch_db ovs-vsctl --no-wait show"
|
|
register: check_result
|
|
until: check_result is success
|
|
changed_when: False
|
|
retries: 30
|
|
delay: 2
|
|
|
|
- name: Restart openvswitch-vswitchd container
|
|
vars:
|
|
service_name: "openvswitch-vswitchd"
|
|
service: "{{ openvswitch_services[service_name] }}"
|
|
become: true
|
|
kolla_docker:
|
|
action: "recreate_or_restart_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ service.container_name }}"
|
|
image: "{{ service.image }}"
|
|
volumes: "{{ service.volumes }}"
|
|
privileged: "{{ service.privileged | default(False) }}"
|
|
dimensions: "{{ service.dimensions }}"
|
|
healthcheck: "{{ service.healthcheck }}"
|
|
when:
|
|
- kolla_action != "config"
|