![Eduardo Gonzalez](/assets/img/avatar_default.png)
Kuryr need etcd on each compute node to store network data. Etcd is only deployed in controller nodes at this moment. Also this change remove and useless bootstrap tasks. Depends-On: I9c6c876773288c2f951966498db0ff8af090ac20 Change-Id: I8a84334e831fb15f6cbdd3bc34d2159638df6b85 Closes-Bug: #1697699
21 lines
770 B
YAML
21 lines
770 B
YAML
---
|
|
- name: Restart etcd container
|
|
vars:
|
|
service_name: "etcd"
|
|
service: "{{ etcd_services[service_name] }}"
|
|
config_json: "{{ etcd_config_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
etcd_container: "{{ check_etcd_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 }}"
|
|
environment: "{{ service.environment }}"
|
|
volumes: "{{ service.volumes }}"
|
|
when:
|
|
- action != "config"
|
|
- service.enabled | bool
|
|
- service.host_in_groups | bool
|
|
- config_json.changed | bool
|
|
or etcd_container.changed | bool
|