Allow keystone role to pull images

Change-Id: I64aff93368da7580b6cc1369a42be0904a670f98
Partially-Implements: blueprint pre-pull-images
This commit is contained in:
SamYaple 2016-01-05 18:02:13 +00:00
parent b7aca3f90e
commit 9efc593c8f
3 changed files with 22 additions and 13 deletions

View File

@ -0,0 +1,14 @@
---
- include: config.yml
when: inventory_hostname in groups['keystone']
- include: bootstrap.yml
when: inventory_hostname in groups['keystone']
- include: start.yml
when: inventory_hostname in groups['keystone']
- include: register.yml
when: inventory_hostname in groups['keystone']
- include: check.yml

View File

@ -1,14 +1,2 @@
---
- include: config.yml
when: inventory_hostname in groups['keystone']
- include: bootstrap.yml
when: inventory_hostname in groups['keystone']
- include: start.yml
when: inventory_hostname in groups['keystone']
- include: register.yml
when: inventory_hostname in groups['keystone']
- include: check.yml
- include: "{{ action }}.yml"

View File

@ -0,0 +1,7 @@
---
- name: Pulling keystone image
kolla_docker:
action: "pull_image"
common_options: "{{ docker_common_options }}"
image: "{{ keystone_image_full }}"
when: inventory_hostname in groups['keystone']