89392f4f6a
Partially-Implements: blueprint ansible-gnocchi Change-Id: I8dd0460bd21ac0a233fab0142ec7b6079459bdc2
22 lines
684 B
YAML
22 lines
684 B
YAML
---
|
|
- name: Pulling gnocchi-api image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ gnocchi_api_image_full }}"
|
|
when: inventory_hostname in groups['gnocchi-api']
|
|
|
|
- name: Pulling gnocchi-metricd image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ gnocchi_metricd_image_full }}"
|
|
when: inventory_hostname in groups['gnocchi-metricd']
|
|
|
|
- name: Pulling gnocchi-statsd image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ gnocchi_statsd_image_full }}"
|
|
when: inventory_hostname in groups['gnocchi-statsd']
|