kolla-ansible/ansible/roles/solum/tasks/pull.yml
caowei 90f2b7cd06 Add solum ansible role
Change-Id: I07f2df405574b55daa44fa381625e8be0c352607
Partially-implements: bp solum-ansible-role
2016-11-25 06:14:51 +08:00

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']