260187c6fa
Change-Id: Idce62ce7c1c10c53e8e42091d6c47da4b770c261 Partially-Implements: blueprint pre-pull-images
22 lines
657 B
YAML
22 lines
657 B
YAML
---
|
|
- name: Pulling heat-api image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ heat_api_image_full }}"
|
|
when: inventory_hostname in groups['heat-api']
|
|
|
|
- name: Pulling heat-api-cfn image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ heat_api_cfn_image_full }}"
|
|
when: inventory_hostname in groups['heat-api-cfn']
|
|
|
|
- name: Pulling heat-engine image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ heat_engine_image_full }}"
|
|
when: inventory_hostname in groups['heat-engine']
|