Rabbitmq Upgrade restarts container only when image was changed.

This fix adds a check of Rabbitmq's image version during the upgrade.
The container gets restarted only when the image version is different.

Change-Id: Ie038845c0c8fff1ac51b7cbf21e1b593229c2c0e
Closes-Bug: #1558832
This commit is contained in:
Serguei Bezverkhi 2016-04-10 16:17:00 -04:00
parent 12735f01da
commit d73ee4a856
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']