Merge "Octavia: handle empty amphora image search result"

This commit is contained in:
Zuul 2020-06-13 04:54:10 +00:00 committed by Gerrit Code Review
commit 19172a2169
1 changed files with 3 additions and 0 deletions

View File

@ -44,7 +44,9 @@
set_fact:
image_id: "{{ glance_id_result.stdout }}"
when:
- glance_id_result.rc is defined
- glance_id_result.rc == 0
- glance_id_result.stdout != ""
- name: get checksum if there's an image in glance already
shell: |
@ -62,6 +64,7 @@
set_fact:
current_md5: "{{ glance_results.stdout }}"
when:
- glance_results.rc is defined
- glance_results.rc == 0
- name: determine if the image needs to be replaced