3e89f987c0
TrivialFix Change-Id: I817aa52caf56b7d54b266e553db6db1ceb38b773 Signed-off-by: Jeffrey Zhang <zhang.lei.fly@gmail.com>
20 lines
731 B
YAML
20 lines
731 B
YAML
---
|
|
- name: Swift sanity checks
|
|
command: docker exec -t kolla_toolbox /usr/bin/ansible localhost
|
|
-m kolla_sanity
|
|
-a "service=swift
|
|
project=service
|
|
user=admin
|
|
password={{ swift_keystone_password }}
|
|
role=admin
|
|
region_name={{ openstack_region_name }}
|
|
auth={{ '{{ openstack_swift_auth }}' }}"
|
|
-e "{'openstack_swift_auth':{{ openstack_swift_auth }}}"
|
|
register: swift_sanity
|
|
changed_when: "{{ swift_sanity.stdout.find('localhost | SUCCESS => ') != -1 and (swift_sanity.stdout.split('localhost | SUCCESS => ')[1]|from_json).changed }}"
|
|
until: swift_sanity.stdout.split()[2] == 'SUCCESS'
|
|
retries: 10
|
|
delay: 5
|
|
run_once: True
|
|
when: kolla_enable_sanity_swift | bool
|