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:
parent
590d8753b0
commit
abba627c16
@ -1,19 +1,22 @@
|
|||||||
---
|
---
|
||||||
- name: Glance sanity checks
|
- name: Glance sanity check - create image
|
||||||
command: docker exec -t kolla_toolbox /usr/bin/ansible localhost
|
kolla_toolbox:
|
||||||
-m kolla_sanity
|
module_name: os_image
|
||||||
-a "service=glance
|
module_args:
|
||||||
project=service
|
auth: "{{ openstack_glance_auth }}"
|
||||||
user=admin
|
name: "glance_sanity_check"
|
||||||
password={{ glance_keystone_password }}
|
filename: "/etc/hostname"
|
||||||
role=admin
|
delegate_to: "{{ groups['glance-api'][0] }}"
|
||||||
region_name={{ openstack_region_name }}
|
run_once: True
|
||||||
auth={{ '{{ openstack_glance_auth }}' }}"
|
when: kolla_enable_sanity_glance | bool
|
||||||
-e "{'openstack_glance_auth':{{ openstack_glance_auth }}}"
|
|
||||||
register: glance_sanity
|
- name: Glance sanity check - cleanup
|
||||||
changed_when: "{{ glance_sanity.stdout.find('localhost | SUCCESS => ') != -1 and (glance_sanity.stdout.split('localhost | SUCCESS => ')[1]|from_json).changed }}"
|
kolla_toolbox:
|
||||||
until: glance_sanity.stdout.split()[2] == 'SUCCESS'
|
module_name: os_image
|
||||||
retries: 10
|
module_args:
|
||||||
delay: 5
|
auth: "{{ openstack_glance_auth }}"
|
||||||
|
name: "glance_sanity_check"
|
||||||
|
state: absent
|
||||||
|
delegate_to: "{{ groups['glance-api'][0] }}"
|
||||||
run_once: True
|
run_once: True
|
||||||
when: kolla_enable_sanity_glance | bool
|
when: kolla_enable_sanity_glance | bool
|
||||||
|
Loading…
Reference in New Issue
Block a user