blob: 7bd4a0e965e926eb1307bfe5deb959a7a2823794 [file] [log] [blame]
Zack Williamsf6cc0122018-03-30 16:00:49 -07001---
Matteo Scandolo3896c472017-08-01 13:31:42 -07002# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Zack Williamsc989f262017-05-11 13:02:59 -070016# glance-images/tasks/main.yml
17
18- name: Make images directory
19 when: use_openstack
20 become: yes
21 file:
22 path: "{{ image_dir }}"
23 state: directory
24 mode: 0755
25 owner: "{{ ansible_user_id }}"
26 group: "{{ ansible_user_gid }}"
27
28- name: Download Glance VM images
29 when: use_openstack
30 get_url:
31 url: "{{ item.url }}"
32 checksum: "{{ item.checksum }}"
33 dest: "{{ image_dir }}/{{ item.name }}.qcow2"
34 with_items: "{{ xos_images }}"
35 register: glance_vm_result
Zack Williamsf6cc0122018-03-30 16:00:49 -070036 until: glance_vm_result is success
Zack Williamsc989f262017-05-11 13:02:59 -070037 retries: 5
38 delay: 10
39
40- name: Copy Glance VM images to profile directory
41 when: use_openstack
42 copy:
43 remote_src: yes
44 src: "{{ image_dir }}/{{ item.name }}.qcow2"
45 dest: "/opt/cord_profile/images/{{ item.name }}.qcow2"
46 with_items: "{{ xos_images }}"
47