Skip to content
Snippets Groups Projects
Commit 8c54c82b authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Allow heat role to pull images"

parents f16fa6d7 260187c6
No related branches found
No related tags found
No related merge requests found
---
- 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: register.yml - include: "{{ action }}.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']
---
- 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']
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment