kolla-ansible/ansible/roles/glance/tasks/check.yml
Clint Byrum 42f7e25125 Retry glance API sanity checks
Apparently this API takes a little while to get started and working.

Change-Id: I328929d596765d3597f4f868cbbe288b63130bca
2018-02-23 12:53:33 -08:00

29 lines
798 B
YAML

---
- name: Glance sanity check - create image
kolla_toolbox:
module_name: os_image
module_args:
auth: "{{ openstack_glance_auth }}"
name: "glance_sanity_check"
filename: "/etc/hostname"
endpoint_type: "{{ openstack_interface }}"
delegate_to: "{{ groups['glance-api'][0] }}"
run_once: True
register: img_create
retries: 10
delay: 3
until: img_create | success
when: kolla_enable_sanity_glance | bool
- name: Glance sanity check - cleanup
kolla_toolbox:
module_name: os_image
module_args:
auth: "{{ openstack_glance_auth }}"
name: "glance_sanity_check"
state: absent
endpoint_type: "{{ openstack_interface }}"
delegate_to: "{{ groups['glance-api'][0] }}"
run_once: True
when: kolla_enable_sanity_glance | bool