912bce7b3e
Change-Id: Ia2e6e3c8371f7b26fb0c77989482d241567e52d1 Partially-Implements: blueprint pre-pull-images
29 lines
907 B
YAML
29 lines
907 B
YAML
---
|
|
- name: Pulling cinder-api image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ cinder_api_image_full }}"
|
|
when: inventory_hostname in groups['cinder-api']
|
|
|
|
- name: Pulling cinder-backup image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ cinder_backup_image_full }}"
|
|
when: inventory_hostname in groups['cinder-backup']
|
|
|
|
- name: Pulling cinder-scheduler image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ cinder_scheduler_image_full }}"
|
|
when: inventory_hostname in groups['cinder-scheduler']
|
|
|
|
- name: Pulling cinder-volume image
|
|
kolla_docker:
|
|
action: "pull_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ cinder_volume_image_full }}"
|
|
when: inventory_hostname in groups['cinder-volume']
|