Skip to content
Snippets Groups Projects
Commit 65c41137 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Remove swift sanity check"

parents 045c2f15 66411cba
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,6 @@ kolla_enable_sanity_barbican: "{{ kolla_enable_sanity_checks }}"
kolla_enable_sanity_keystone: "{{ kolla_enable_sanity_checks }}"
kolla_enable_sanity_glance: "{{ kolla_enable_sanity_checks }}"
kolla_enable_sanity_cinder: "{{ kolla_enable_sanity_checks }}"
kolla_enable_sanity_swift: "{{ kolla_enable_sanity_checks }}"
kolla_dev_repos_directory: "/opt/stack/"
kolla_dev_repos_git: "https://opendev.org/openstack"
......
---
- 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment