ee66b6468d
Iscsid is not only needed by cinder lvm backend, but also by ironic conductor container. Change-Id: I903cda88ca71ba31b30c220761f33808495aba72 Closes-Bug: #1709809
41 lines
1.3 KiB
YAML
41 lines
1.3 KiB
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
when: ( ( inventory_hostname in groups['compute'] or inventory_hostname in groups['cinder-volume'] ) and enable_cinder_backend_lvm | bool )
|
|
or ( inventory_hostname in groups['ironic-conductor'] and enable_ironic | bool )
|
|
with_items:
|
|
- "iscsid"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/config.json"
|
|
when: ( ( inventory_hostname in groups['compute'] or inventory_hostname in groups['cinder-volume'] ) and enable_cinder_backend_lvm | bool )
|
|
or ( inventory_hostname in groups['ironic-conductor'] and enable_ironic | bool )
|
|
with_items:
|
|
- "iscsid"
|
|
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
when:
|
|
- enable_cinder_backend_lvm | bool
|
|
- inventory_hostname in groups['tgtd']
|
|
with_items:
|
|
- "tgtd"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/config.json"
|
|
when:
|
|
- enable_cinder_backend_lvm | bool
|
|
- inventory_hostname in groups['tgtd']
|
|
with_items:
|
|
- "tgtd"
|