Merge "Allow murano role to pull images"

This commit is contained in:
Jenkins 2016-01-06 08:22:47 +00:00 committed by Gerrit Code Review
commit d9762fe61e
3 changed files with 29 additions and 13 deletions

View File

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

View File

@ -1,14 +1,2 @@
---
- 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: "{{ action }}.yml"

View File

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