d0100432fc
Co-Authored-By: caoyuan <cao.yuan@99cloud.net> Change-Id: Ic5b3b7b1f8009203c8ff870a75b150704eb54e6d Partially-implements: blueprint better-reconfigure
67 lines
2.9 KiB
YAML
67 lines
2.9 KiB
YAML
---
|
|
- name: Restart karbor-api container
|
|
vars:
|
|
service_name: "karbor-api"
|
|
service: "{{ karbor_services[service_name] }}"
|
|
config_json: "{{ karbor_config_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
karbor_conf: "{{ karbor_confs.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
karbor_api_container: "{{ check_karbor_containers.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
kolla_docker:
|
|
action: "recreate_or_restart_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ service.container_name }}"
|
|
image: "{{ service.image }}"
|
|
volumes: "{{ service.volumes }}"
|
|
when:
|
|
- action != "config"
|
|
- inventory_hostname in groups[service.group]
|
|
- service.enabled | bool
|
|
- config_json.changed | bool
|
|
or karbor_conf.changed | bool
|
|
or openstack_infra_conf.changed | bool
|
|
or karbor_api_container.changed | bool
|
|
|
|
- name: Restart karbor-protection container
|
|
vars:
|
|
service_name: "karbor-protection"
|
|
service: "{{ karbor_services[service_name] }}"
|
|
config_json: "{{ karbor_config_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
karbor_conf: "{{ karbor_confs.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
karbor_protection_container: "{{ check_karbor_containers.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
kolla_docker:
|
|
action: "recreate_or_restart_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ service.container_name }}"
|
|
image: "{{ service.image }}"
|
|
volumes: "{{ service.volumes }}"
|
|
when:
|
|
- action != "config"
|
|
- inventory_hostname in groups[service.group]
|
|
- service.enabled | bool
|
|
- config_json.changed | bool
|
|
or karbor_conf.changed | bool
|
|
or openstack_infra_conf.changed | bool
|
|
or karbor_protection_container.changed | bool
|
|
|
|
- name: Restart karbor-operationengine container
|
|
vars:
|
|
service_name: "karbor-operationengine"
|
|
service: "{{ karbor_services[service_name] }}"
|
|
config_json: "{{ karbor_config_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
karbor_conf: "{{ karbor_confs.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
karbor_operationengine_container: "{{ check_karbor_containers.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
kolla_docker:
|
|
action: "recreate_or_restart_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ service.container_name }}"
|
|
image: "{{ service.image }}"
|
|
volumes: "{{ service.volumes }}"
|
|
when:
|
|
- action != "config"
|
|
- inventory_hostname in groups[service.group]
|
|
- service.enabled | bool
|
|
- config_json.changed | bool
|
|
or karbor_conf.changed | bool
|
|
or openstack_infra_conf.changed | bool
|
|
or karbor_operationengine_container.changed | bool
|