1 # Copyright (c) 2017 Intel Corporation.
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
21 boot_mode: "{{ boot_modes[YARD_IMG_ARCH] }}"
22 image_filename: "{{ release }}-server-cloudimg-{{ YARD_IMG_ARCH }}-{{ boot_mode }}.img"
23 image_path: "{{ release }}/current/{{ image_filename }}"
24 host: "{{ lookup('env', 'HOST')|default('cloud-images.ubuntu.com', true)}}"
25 image_url: "{{ lookup('env', 'IMAGE_URL')|default('https://' ~ host ~ '/' ~ image_path, true) }}"
26 image_dest: "{{ workspace }}/{{ image_filename }}"
27 sha256sums_path: "{{ release }}/current/SHA256SUMS"
28 sha256sums_filename: "{{ sha256sums_path|basename }}"
29 sha256sums_url: "{{ lookup('env', 'SHA256SUMS_URL')|default('https://' ~ host ~ '/' ~ sha256sums_path, true) }}"
31 workspace: "{{ lookup('env', 'workspace')|default('/tmp/workspace/yardstick', true) }}"
32 imgfile: "{{ workspace }}/yardstick-image.img"
33 raw_imgfile_basename: "yardstick-{{ release }}-server.raw"
35 PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/bin
41 - package: name=parted state=present
44 mountdir: "{{ lookup('env', 'mountdir')|default('/mnt/yardstick', true) }}"
47 raw_imgfile: "{{ workspace }}/{{ raw_imgfile_basename }}"
50 - name: unmount all old mount points
56 - "{{ mountdir }}/proc"
58 - "/mnt/{{ release }}"
60 - name: kpartx -dv to delete all image partition device nodes
61 command: kpartx -dv "{{ raw_imgfile }}"
64 - name: delete {{ raw_imgfile }}
66 path: "{{ raw_imgfile }}"
70 - name: remove {{ mountdir }}
72 path: "{{ mountdir }}"
76 - name: remove {{ workspace }}
78 path: "{{ workspace }}"
81 - name: "fetch {{ image_url }} and verify "
83 url: "{{ image_url }}"
84 sha256url: "{{ sha256sums_url }}"
85 dest: "{{ image_dest }}"
87 - name: convert image to raw
88 command: "qemu-img convert {{ image_dest }} {{ raw_imgfile }}"
90 - name: resize image to allow for more VNFs
91 command: "qemu-img resize -f raw {{ raw_imgfile }} +2G"
93 - name: resize parition to allow for more VNFs
94 command: "parted -s -a optimal {{ raw_imgfile }} resizepart 1 100%"
96 - name: create mknod devices in chroot
97 command: "mknod -m 0660 /dev/loop{{ item }} b 7 {{ item }}"
99 creates: "/dev/loop{{ item }}"
100 with_sequence: start=0 end=9
103 - name: find first partition device
104 # command: kpartx -l "{{ loop_device }}"
105 command: kpartx -l "{{ raw_imgfile }}"
109 image_first_partition: "{{ kpartx_res.stdout_lines[0].split()[0] }}"
112 # assume / is the first partition
113 image_first_partition_device: "/dev/mapper/{{ image_first_partition }}"
115 - name: use kpartx to create device nodes for the raw image loop device
116 # operate on the loop device to avoid /dev namespace missing devices
117 command: kpartx -avs "{{ raw_imgfile }}"
119 - name: parted dump raw image
120 command: parted "{{ raw_imgfile }}" print
127 - name: use blkid to find filesystem type of first partition device
128 command: blkid -o value -s TYPE {{ image_first_partition_device }}
132 image_fs_type: "{{ blkid_res.stdout.strip() }}"
134 msg: "We only support ext4 image filesystems because we have to resize"
135 when: image_fs_type != "ext4"
137 - name: fsck the image filesystem
138 command: "e2fsck -y -f {{ image_first_partition_device }}"
140 - name: resize filesystem to full partition size
141 command: resize2fs {{ image_first_partition_device }}
143 - name: fsck the image filesystem
144 command: "e2fsck -y -f {{ image_first_partition_device }}"
146 - name: make tmp disposable fstab
147 command: mktemp --tmpdir fake_fstab.XXXXXXXXXX
151 fake_fstab: "{{ mktemp_res.stdout.strip() }}"
153 - name: mount first parition on image device
155 src: "{{ image_first_partition_device }}"
156 name: "{{ mountdir }}"
158 fstype: "{{ image_fs_type }}"
159 # !!!!!!! this is required otherwise we add entries to /etc/fstab
160 # and prevent the system from booting
161 fstab: "{{ fake_fstab }}"
164 - name: mount chroot /proc
167 name: "{{ mountdir }}/proc"
169 # !!!!!!! this is required otherwise we add entries to /etc/fstab
170 # and prevent the system from booting
171 fstab: "{{ fake_fstab }}"
174 - name: if arm copy qemu-aarch64-static into chroot
176 src: /usr/bin/qemu-aarch64-static
177 dest: "{{ mountdir }}/usr/bin"
178 when: 'YARD_IMG_ARCH == "arm64"'
180 - name: create ubuntu policy-rc.d workaround
182 content: "{{ '#!/bin/sh\nexit 101\n' }}"
183 dest: "{{ mountdir }}/usr/sbin/policy-rc.d"
185 when: "target_os == 'Ubuntu'"
187 - name: set img_modify_playbook
189 img_modify_playbook: ubuntu_server_cloudimg_modify.yml
192 var: img_modify_playbook
195 - name: add chroot as host
197 name: "{{ mountdir }}"
198 groups: chroot_image,image_builder
200 ansible_python_interpreter: /usr/bin/python3
201 # set this host variable here
202 nameserver_ip: "{{ ansible_dns.nameservers[0] }}"
205 - name: include {{ img_modify_playbook }}
206 include: "{{ img_modify_playbook }}"
208 - name: run post build tasks
209 include: post_build_yardstick_image.yml
215 msg: "yardstick image = {{ raw_imgfile }}"