From 260187c6fa2b1ba7f3d9fd30e30ad9ce6b81776b Mon Sep 17 00:00:00 2001 From: SamYaple Date: Tue, 5 Jan 2016 17:54:52 +0000 Subject: [PATCH] Allow heat role to pull images Change-Id: Idce62ce7c1c10c53e8e42091d6c47da4b770c261 Partially-Implements: blueprint pre-pull-images --- ansible/roles/heat/tasks/deploy.yml | 16 ++++++++++++++++ ansible/roles/heat/tasks/main.yml | 16 +--------------- ansible/roles/heat/tasks/pull.yml | 21 +++++++++++++++++++++ 3 files changed, 38 insertions(+), 15 deletions(-) create mode 100644 ansible/roles/heat/tasks/deploy.yml create mode 100644 ansible/roles/heat/tasks/pull.yml diff --git a/ansible/roles/heat/tasks/deploy.yml b/ansible/roles/heat/tasks/deploy.yml new file mode 100644 index 0000000000..a27fbf2ccc --- /dev/null +++ b/ansible/roles/heat/tasks/deploy.yml @@ -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'] diff --git a/ansible/roles/heat/tasks/main.yml b/ansible/roles/heat/tasks/main.yml index a27fbf2ccc..b017e8b4ad 100644 --- a/ansible/roles/heat/tasks/main.yml +++ b/ansible/roles/heat/tasks/main.yml @@ -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" diff --git a/ansible/roles/heat/tasks/pull.yml b/ansible/roles/heat/tasks/pull.yml new file mode 100644 index 0000000000..b671b7b253 --- /dev/null +++ b/ansible/roles/heat/tasks/pull.yml @@ -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']