
Many tasks that use Docker have become specified already, but not all. This change ensures all tasks that use the following modules have become: * kolla_docker * kolla_ceph_keyring * kolla_toolbox * kolla_container_facts It also adds become for 'command' tasks that use docker CLI. Change-Id: I4a5ebcedaccb9261dbc958ec67e8077d7980e496
12 lines
308 B
YAML
12 lines
308 B
YAML
---
|
|
- name: Keystone sanity checks
|
|
become: true
|
|
kolla_toolbox:
|
|
module_name: os_auth
|
|
module_args:
|
|
auth: "{{ openstack_keystone_auth }}"
|
|
endpoint_type: "{{ openstack_interface }}"
|
|
run_once: True
|
|
delegate_to: "{{ groups['keystone'][0] }}"
|
|
when: kolla_enable_sanity_keystone | bool
|