Skip to content
Snippets Groups Projects
Commit e764e852 authored by SamYaple's avatar SamYaple
Browse files

Allow murano role to pull images

Change-Id: I0971ddcff7b688ae0dee7658ab4be7ca3fbbdc28
Partially-Implements: blueprint pre-pull-images
parent b6ac0b2e
No related branches found
No related tags found
No related merge requests found
---
- include: register.yml
when: inventory_hostname in groups['murano-api']
- include: config.yml
when: inventory_hostname in groups['murano-api'] or
inventory_hostname in groups['murano-engine']
- include: bootstrap.yml
when: inventory_hostname in groups['murano-api']
- include: start.yml
when: inventory_hostname in groups['murano-api'] or
inventory_hostname in groups['murano-engine']
--- ---
- include: register.yml - include: "{{ action }}.yml"
when: inventory_hostname in groups['murano-api']
- include: config.yml
when: inventory_hostname in groups['murano-api'] or
inventory_hostname in groups['murano-engine']
- include: bootstrap.yml
when: inventory_hostname in groups['murano-api']
- include: start.yml
when: inventory_hostname in groups['murano-api'] or
inventory_hostname in groups['murano-engine']
---
- 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']
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