kolla-ansible/ansible/roles/congress/tasks/pull.yml
mail2nadeem92 4b39d056ad Added Ansible playbook for congress deploy
Change-Id: Id04fe7a8f30ed0dae292933662036f4775e394a2
Partially-Implements: blueprint enable-congress-container
2016-09-01 10:43:03 +05:30

22 lines
723 B
YAML

---
- name: Pulling congress-api image
kolla_docker:
action: "pull_image"
common_options: "{{ docker_common_options }}"
image: "{{ congress_api_image_full }}"
when: inventory_hostname in groups['congress-api']
- name: Pulling congress-policy-engine image
kolla_docker:
action: "pull_image"
common_options: "{{ docker_common_options }}"
image: "{{ congress_policy_engine_image_full }}"
when: inventory_hostname in groups['congress-policy-engine']
- name: Pulling congress-datasource image
kolla_docker:
action: "pull_image"
common_options: "{{ docker_common_options }}"
image: "{{ congress_datasource_image_full }}"
when: inventory_hostname in groups['congress-datasource']