blob: bb2a869ce234171fc1d870b4c22c243866c5f8e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#!/bin/bash
##############################################################################
# Copyright (c) 2017 EMC and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
cd "$(dirname "$0")" || exit
mkdir -p job
ARCH="${ARCH:-$(uname -m)}"
IMAGE_NAME="Ubuntu 16.04 ${ARCH}"
echo "Checking for ${IMAGE_NAME} in Glance"
IMAGE="$(openstack image list | grep "${IMAGE_NAME}")"
PROPERTIES=""
if [ -z "$IMAGE" ]
then
case "${ARCH}" in
aarch64)
FILE=ubuntu-16.04-server-cloudimg-arm64-disk1.img
PROPERTIES="--property hw_firmware_type=uefi --property hw_video_model=vga"
;;
armhf)
FILE=ubuntu-16.04-server-cloudimg-armhf-disk1.img
;;
x86_64)
FILE=ubuntu-16.04-server-cloudimg-amd64-disk1.img
;;
*)
echo "Unsupported architecture: ${ARCH}"
exit 1
;;
esac
echo wget --continue -q "https://cloud-images.ubuntu.com/releases/16.04/release/${FILE}"
wget --continue -q "https://cloud-images.ubuntu.com/releases/16.04/release/${FILE}"
if [ ! -e "${FILE}" ] ; then
echo https://cloud-images.ubuntu.com/releases/16.04/release/${FILE} not found
exit 1
fi
openstack image create "${IMAGE_NAME}" --disk-format qcow2 --public \
${PROPERTIES} \
--container-format bare --file "${FILE}"
fi
openstack image show "${IMAGE_NAME}"
echo "${IMAGE_NAME}" > job/glance_image_name
|