kolla-ansible/ansible/roles/murano/tasks/pull.yml
SamYaple e764e8522d Allow murano role to pull images
Change-Id: I0971ddcff7b688ae0dee7658ab4be7ca3fbbdc28
Partially-Implements: blueprint pre-pull-images
2016-01-06 04:23:28 +00:00

15 lines
446 B
YAML

---
- name: Pulling murano-api image
kolla_docker:
action: "pull_image"
common_options: "{{ docker_common_options }}"
image: "{{ murano_api_image_full }}"
when: inventory_hostname in groups['murano-api']
- name: Pulling murano-engine image
kolla_docker:
action: "pull_image"
common_options: "{{ docker_common_options }}"
image: "{{ murano_engine_image_full }}"
when: inventory_hostname in groups['murano-engine']