e9bde0dcb9
In someplace in the code admin user, project and domain name are hardcoded. This change use the correct variable defined at: https://github.com/openstack/kolla-ansible/blob/master/ansible/group_vars/all.yml#L278 Change-Id: I3a4c78d81733bf7a2f3c67d259ec5c5f5bb38d3f
20 lines
766 B
YAML
20 lines
766 B
YAML
---
|
|
- name: Cinder sanity checks
|
|
command: docker exec -t kolla_toolbox /usr/bin/ansible localhost
|
|
-m kolla_sanity
|
|
-a "service=cinder
|
|
project=service
|
|
user={{ openstack_auth.username }}
|
|
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
|