
As part of non-lvm iscsi bugfix, changes were introduced to iscsi's start.yml. Same changes/conditions should be reflected to config.yml so container configuration is deployed on the same nodes as containers are started. TrivialFix Change-Id: Ib988df2d36983d63a3aff4226224dc5fc6064221
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:
|
|
- inventory_hostname in groups['tgtd']
|
|
- enable_cinder_backend_lvm | bool
|
|
with_items:
|
|
- "tgtd"
|
|
|
|
- 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['tgtd']
|
|
- enable_cinder_backend_lvm | bool
|
|
with_items:
|
|
- "tgtd"
|