Iscsid container fails to start on storage node when cinder is enabled

When the iscsid containers is included in the kolla deployment it starts
successfully on a compute node but fails to start on a storage node, if
cinder is enabled because the config file is not copied to the container
BTW, if cinder is not enabled the iscsid container starts successfully
on both the compute and storage nodes.

Change-Id: I665535d858affebc9623b29f79c89c18f7cc399f
Closes-Bug: #1629381
This commit is contained in:
Mark Duggan 2016-10-03 15:46:35 +01:00
parent b482611a2d
commit 74c85cfe82

View File

@ -4,7 +4,8 @@
path: "{{ node_config_directory }}/{{ item }}"
state: "directory"
recurse: yes
when: inventory_hostname in groups['compute']
when: inventory_hostname in groups['compute'] or
inventory_hostname in groups['storage']
with_items:
- "iscsid"
@ -12,7 +13,8 @@
template:
src: "{{ item }}.json.j2"
dest: "{{ node_config_directory }}/{{ item }}/config.json"
when: inventory_hostname in groups['compute']
when: inventory_hostname in groups['compute'] or
inventory_hostname in groups['storage']
with_items:
- "iscsid"