Merge "Rabbitmq Upgrade restarts container only when image was changed." into stable/mitaka

This commit is contained in:
Jenkins 2016-04-15 19:51:14 +00:00 committed by Gerrit Code Review
commit f10a625a72
1 changed files with 18 additions and 3 deletions

View File

@ -1,4 +1,13 @@
---
- name: Checking if rabbitmq container needs upgrading
kolla_docker:
action: "compare_image"
common_options: "{{ docker_common_options }}"
name: "rabbitmq"
image: "{{ rabbitmq_image_full }}"
when: inventory_hostname in groups['rabbitmq']
register: rabbitmq_differs
- include: config.yml
- name: Find gospel node
@ -13,10 +22,16 @@
action: "stop_container"
common_options: "{{ docker_common_options }}"
name: "rabbitmq"
when: rabbitmq_hostname != (gospel_node.stdout | from_json).hostname
when:
- rabbitmq_hostname != (gospel_node.stdout | from_json).hostname
- rabbitmq_differs['result']
- include: start.yml
when: rabbitmq_hostname == (gospel_node.stdout | from_json).hostname
when:
- rabbitmq_hostname == (gospel_node.stdout | from_json).hostname
- rabbitmq_differs['result']
- include: start.yml
when: rabbitmq_hostname != (gospel_node.stdout | from_json).hostname
when:
- rabbitmq_hostname != (gospel_node.stdout | from_json).hostname
- rabbitmq_differs['result']