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
15 lines
432 B
YAML
15 lines
432 B
YAML
---
|
|
- name: Creating the Kuryr project, user, and role
|
|
become: true
|
|
kolla_toolbox:
|
|
module_name: "kolla_keystone_user"
|
|
module_args:
|
|
project: "service"
|
|
user: "{{ kuryr_keystone_user }}"
|
|
password: "{{ kuryr_keystone_password }}"
|
|
role: "admin"
|
|
region_name: "{{ openstack_region_name }}"
|
|
auth: "{{ openstack_kuryr_auth }}"
|
|
endpoint_type: "{{ openstack_interface }}"
|
|
run_once: True
|