5782a214e9
In case of karbor-protection providers.d/openstack-infra.conf config file modification, karbor-operationengine and karbor-api are restarted too, but they should not. karbor-operationengine startup command: https://github.com/openstack/kolla-ansible/blob/master/ansible/roles/karbor/templates/karbor-operationengine.json.j2#L2 karbor-api startup command: https://github.com/openstack/kolla-ansible/blob/master/ansible/roles/karbor/templates/karbor-api.json.j2#L2 Change-Id: I91a0273ccf46e340315cf885ea01db6e14653182 Closes-Bug: #1677542
65 lines
2.8 KiB
YAML
65 lines
2.8 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 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 karbor_operationengine_container.changed | bool
|