b123bf6621
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
29 lines
831 B
YAML
29 lines
831 B
YAML
---
|
|
- name: Copying over ceph.conf for manila
|
|
merge_configs:
|
|
sources:
|
|
- "{{ role_path }}/../ceph/templates/ceph.conf.j2"
|
|
- "{{ node_custom_config }}/ceph.conf"
|
|
- "{{ node_custom_config }}/ceph/{{ inventory_hostname }}/ceph.conf"
|
|
dest: "{{ node_config_directory }}/manila-share/ceph.conf"
|
|
mode: "0660"
|
|
become: true
|
|
|
|
- name: Pulling cephx keyring for manila
|
|
become: true
|
|
kolla_ceph_keyring:
|
|
name: client.manila
|
|
caps: "{{ ceph_client_manila_keyring_caps }}"
|
|
register: cephx_key_manila
|
|
delegate_to: "{{ groups['ceph-mon'][0] }}"
|
|
run_once: True
|
|
|
|
- name: Pushing cephx keyring
|
|
copy:
|
|
content: |
|
|
[client.manila]
|
|
key = {{ cephx_key_manila.keyring.key }}
|
|
dest: "{{ node_config_directory }}/manila-share/ceph.client.manila.keyring"
|
|
mode: "0600"
|
|
become: true
|