4b39d056ad
Change-Id: Id04fe7a8f30ed0dae292933662036f4775e394a2 Partially-Implements: blueprint enable-congress-container
22 lines
723 B
YAML
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']
|