Add become for Cinder configuration tasks

This is required to support execution as a non-root user.

Change-Id: I017b44352a33884102fefbacdde0fddc7f0282e3
Closes-Bug: #1795125
This commit is contained in:
Mark Goddard 2018-09-29 10:17:10 +01:00
parent eaa9815ad2
commit 12e644f4f4

View File

@ -49,6 +49,7 @@
- name: Copying over cinder-wsgi.conf
vars:
service: "{{ cinder_services['cinder-api'] }}"
become: true
template:
src: "{{ item }}"
dest: "{{ node_config_directory }}/cinder-api/cinder-wsgi.conf"
@ -88,6 +89,7 @@
- Restart cinder-backup container
- name: Copying over existing policy file
become: true
template:
src: "{{ cinder_policy_file_path }}"
dest: "{{ node_config_directory }}/{{ item.key }}/{{ cinder_policy_file }}"
@ -103,6 +105,7 @@
- Restart cinder-backup container
- name: Copying over nfs_shares files for cinder_volume
become: true
template:
src: "{{ item }}"
dest: "{{ node_config_directory }}/cinder-volume/nfs_shares"