kolla-ansible/ansible/roles/iscsi/tasks/pull.yml
Tin Lam 02da8e5104 Fix typo in iscsi pull playbook
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
2016-08-22 21:12:38 -05:00

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']