235e95885b
Closes-Bug: #1551052 Change-Id: Ic226287bbf1f1e8d5cc2e1d80ce2975448b1f95c
29 lines
907 B
YAML
29 lines
907 B
YAML
---
|
|
- name: Pulling ironic-api image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ ironic_api_image_full }}"
|
|
when: inventory_hostname in groups['ironic-api']
|
|
|
|
- name: Pulling ironic-conductor image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ ironic_conductor_image_full }}"
|
|
when: inventory_hostname in groups['ironic-conductor']
|
|
|
|
- name: Pulling ironic-inspector image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ ironic_inspector_image_full }}"
|
|
when: inventory_hostname in groups['ironic-inspector']
|
|
|
|
- name: Pulling ironic-pxe image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ ironic_pxe_image_full }}"
|
|
when: inventory_hostname in groups['ironic-pxe']
|