02da8e5104
In ansible/roles/iscsi/tasks/pull.yml, there are references to 'iscsi', which should be 'iscsid' instead. This patchset fixes this typo. Change-Id: Id2c31bf69556ec8dcf66cc1d32d2bfe77f02367b Closes-bug: #1602566
15 lines
407 B
YAML
15 lines
407 B
YAML
---
|
|
- name: Pulling iscsid image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ iscsid_image_full }}"
|
|
when: inventory_hostname in groups['iscsid']
|
|
|
|
- name: Pulling tgtd image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ tgtd_image_full }}"
|
|
when: inventory_hostname in groups['tgtd']
|