Update glance sanity check to use built in shade

The current module 'kolla_sanity' was written as a shim before full
shade support was added to Ansible. This should now no longer be needed,
we can implement the checks using Ansible provided modules.

Partially-implements: blueprint sanity-check-container
Depends-On: If6d10f2ce90c7fc72353566554352b0310942f30
Change-Id: Ie08c952178cdbea6e6a6e9e91cb62090ea98c2be
This commit is contained in:
Paul Bourke 2017-02-24 15:34:01 +00:00
parent 590d8753b0
commit abba627c16

View File

@ -1,19 +1,22 @@
---
- name: Glance sanity checks
command: docker exec -t kolla_toolbox /usr/bin/ansible localhost
-m kolla_sanity
-a "service=glance
project=service
user=admin
password={{ glance_keystone_password }}
role=admin
region_name={{ openstack_region_name }}
auth={{ '{{ openstack_glance_auth }}' }}"
-e "{'openstack_glance_auth':{{ openstack_glance_auth }}}"
register: glance_sanity
changed_when: "{{ glance_sanity.stdout.find('localhost | SUCCESS => ') != -1 and (glance_sanity.stdout.split('localhost | SUCCESS => ')[1]|from_json).changed }}"
until: glance_sanity.stdout.split()[2] == 'SUCCESS'
retries: 10
delay: 5
- 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"
delegate_to: "{{ groups['glance-api'][0] }}"
run_once: True
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
delegate_to: "{{ groups['glance-api'][0] }}"
run_once: True
when: kolla_enable_sanity_glance | bool