09e02ef8f1
This commit adds the functionality for an operator to specify their own trusted CA certificate file for interacting with the Keystone API. Implements: blueprint support-trusted-ca-certificate-file Change-Id: I84f9897cc8e107658701fb309ec318c0f805883b
22 lines
833 B
YAML
22 lines
833 B
YAML
---
|
|
- name: Swift sanity checks
|
|
become: true
|
|
command: docker exec -t kolla_toolbox ansible localhost
|
|
-m kolla_sanity
|
|
-a "service=swift
|
|
project=service
|
|
user={{ openstack_auth.username }}
|
|
password={{ swift_keystone_password }}
|
|
role=admin
|
|
region_name={{ openstack_region_name }}
|
|
auth={{ '{{ openstack_swift_auth }}' }}
|
|
{% if openstack_cacert != '' %}cacert={{ openstack_cacert }}{% endif %}"
|
|
-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
|