Allow keystone role to pull images
Change-Id: I64aff93368da7580b6cc1369a42be0904a670f98 Partially-Implements: blueprint pre-pull-images
This commit is contained in:
parent
b7aca3f90e
commit
9efc593c8f
14
ansible/roles/keystone/tasks/deploy.yml
Normal file
14
ansible/roles/keystone/tasks/deploy.yml
Normal 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
|
@ -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"
|
||||
|
7
ansible/roles/keystone/tasks/pull.yml
Normal file
7
ansible/roles/keystone/tasks/pull.yml
Normal 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']
|
Loading…
Reference in New Issue
Block a user