CSIT-111: Add Packer based framework to auto-generate disk images
[csit.git] / resources / tools / disk-image-builder / ubuntu / build-listmaker.sh
1 #!/bin/sh
2
3 # Copyright (c) 2016 Cisco and/or its affiliates.
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
15 # This builds the "listmaker" image. This is essentially a one-time
16 # action and most likely applicable to CSIT test lab only.
17
18 cd $(dirname $0)
19 BUILD_DIR="$(pwd)/build"
20 PACKER_DIR="${BUILD_DIR}/packer"
21 OUT_DIR="${BUILD_DIR}/output/listmaker"
22
23 RELEASE_NAME="csit-ubuntu-14.04.4-listmaker"
24 PACKER_TEMPLATE="listmaker/ubuntu-14.04.4.json"
25
26 VIRL_IMAGE_SUBTYPE=server
27 VIRL_IMAGE_NAME="${RELEASE_NAME}"
28 VIRL_IMAGE_FILE="${OUT_DIR}/packer-${RELEASE_NAME}"
29
30 # export PACKER_LOG="1"
31
32 # This script requires that the following two environment variables be defined-
33 #
34 # $VIRL_USER
35 # $VIRL_PASSWORD
36
37 if [ "$VIRL_USER" = "" ] || [ "$VIRL_PASSWORD" = "" ]
38 then
39   echo '$VIRL_USER and $VIRL_PASSWORD environment variables must be defined'
40   exit 1
41 fi
42
43 ###
44 ### Download and extract packer, if not already installed
45 ###
46 os=$(uname -s)
47 if [ "$os" = "Darwin" ]
48 then
49   packer_url="https://releases.hashicorp.com/packer/0.10.1/packer_0.10.1_darwin_amd64.zip"
50 elif [ "$os" = "Linux" ]
51 then
52   packer_url="https://releases.hashicorp.com/packer/0.10.1/packer_0.10.1_linux_amd64.zip"
53 fi
54
55 mkdir -p $BUILD_DIR
56 wget -P ${PACKER_DIR} -N ${packer_url}
57
58 unzip -n ${PACKER_DIR}/packer*zip -d ${PACKER_DIR}
59
60 ###
61 ### Build the actual image as per packer script. Packer post-processor will
62 ### upload it to VIRL.
63 ###
64 ${BUILD_DIR}/packer/packer build -var "release=${RELEASE_NAME}" \
65   -var "outputdir=${OUT_DIR}" -force -machine-readable ${PACKER_TEMPLATE}