90f2b7cd06
Change-Id: I07f2df405574b55daa44fa381625e8be0c352607 Partially-implements: bp solum-ansible-role
29 lines
901 B
YAML
29 lines
901 B
YAML
---
|
|
- name: Pulling solum-api image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ solum_api_image_full }}"
|
|
when: inventory_hostname in groups['solum-api']
|
|
|
|
- name: Pulling solum-worker image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ solum_worker_image_full }}"
|
|
when: inventory_hostname in groups['solum-worker']
|
|
|
|
- name: Pulling solum-deployer image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ solum_deployer_image_full }}"
|
|
when: inventory_hostname in groups['solum-deployer']
|
|
|
|
- name: Pulling solum-conductor image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ solum_conductor_image_full }}"
|
|
when: inventory_hostname in groups['solum-conductor']
|