Sanity check for cinder

This runs first sanity check for cinder. Once
cinder is deployed it checks volumes.list()

Change-Id: I1b4cc57f21cf0fa52a391229c2c2b3fa995d32a8
Partially-Implements: blueprint sanity-check-container
This commit is contained in:
jvora 2016-02-27 16:22:34 -08:00
parent c81097df8b
commit c31729cdaf
4 changed files with 31 additions and 0 deletions

View File

@ -31,6 +31,7 @@ kolla_enable_sanity_checks: "no"
kolla_enable_sanity_keystone: "{{ kolla_enable_sanity_checks }}"
kolla_enable_sanity_glance: "{{ kolla_enable_sanity_checks }}"
kolla_enable_sanity_cinder: "{{ kolla_enable_sanity_checks }}"
####################
# Database options

View File

@ -0,0 +1,20 @@
---
- name: Cinder sanity checks
command: docker exec -t kolla_toolbox /usr/bin/ansible localhost
-m kolla_sanity
-a "service=cinder
project=service
user=admin
password={{ cinder_keystone_password }}
role=admin
region_name={{ openstack_region_name }}
auth={{ '{{ openstack_cinder_auth }}' }}"
-e "{'openstack_cinder_auth':{{ openstack_cinder_auth }}}"
register: cinder_sanity
changed_when: "{{ cinder_sanity.stdout.find('localhost | SUCCESS => ') != -1 and (cinder_sanity.stdout.split('localhost | SUCCESS => ')[1]|from_json).changed }}"
until: cinder_sanity.stdout.split()[2] == 'SUCCESS'
retries: 10
delay: 5
run_once: True
when: kolla_enable_sanity_cinder | bool

View File

@ -25,3 +25,9 @@
inventory_hostname in groups['cinder-volume'] or
inventory_hostname in groups['cinder-scheduler'] or
inventory_hostname in groups['cinder-backup']
- include: check.yml
when: inventory_hostname in groups['cinder-api'] or
inventory_hostname in groups['cinder-volume'] or
inventory_hostname in groups['cinder-scheduler'] or
inventory_hostname in groups['cinder-backup']

View File

@ -34,6 +34,10 @@ class SanityChecks(object):
def glance(cloud):
[image for image in cloud.glance_client.images.list()]
@staticmethod
def cinder(cloud):
[volume for volume in cloud.cinder_client.volumes.list()]
def main():
module = AnsibleModule(