Allow heat role to pull images

Change-Id: Idce62ce7c1c10c53e8e42091d6c47da4b770c261
Partially-Implements: blueprint pre-pull-images
This commit is contained in:
SamYaple 2016-01-05 17:54:52 +00:00
parent e435042b9b
commit 260187c6fa
3 changed files with 38 additions and 15 deletions

View File

@ -0,0 +1,16 @@
---
- include: register.yml
when: inventory_hostname in groups['heat-api']
- include: config.yml
when: inventory_hostname in groups['heat-api'] or
inventory_hostname in groups['heat-api-cfn'] or
inventory_hostname in groups['heat-engine']
- include: bootstrap.yml
when: inventory_hostname in groups['heat-api']
- include: start.yml
when: inventory_hostname in groups['heat-api'] or
inventory_hostname in groups['heat-api-cfn'] or
inventory_hostname in groups['heat-engine']

View File

@ -1,16 +1,2 @@
---
- include: register.yml
when: inventory_hostname in groups['heat-api']
- include: config.yml
when: inventory_hostname in groups['heat-api'] or
inventory_hostname in groups['heat-api-cfn'] or
inventory_hostname in groups['heat-engine']
- include: bootstrap.yml
when: inventory_hostname in groups['heat-api']
- include: start.yml
when: inventory_hostname in groups['heat-api'] or
inventory_hostname in groups['heat-api-cfn'] or
inventory_hostname in groups['heat-engine']
- include: "{{ action }}.yml"

View File

@ -0,0 +1,21 @@
---
- 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']