e237319965
Check enable_* variables first, then check inventory_host in group, will help to avoid configuration errors. Change-Id: Icdb1f50e5c911203b92ac431723620756b15f3c6 Closes-Bug: #1648376
41 lines
1.1 KiB
YAML
41 lines
1.1 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['storage']
|
|
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['storage']
|
|
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"
|