blob: ef0287287edb44cb75edcba5b9dafd6944c0ac59 [file] [log] [blame]
Ivan Berezovskiyc46e7c02018-10-29 18:22:09 +04001#!/bin/bash
2
3# pre-requirments:
4# apt-get install cloud-localds
5# Cloudimg: wget https://cloud-images.ubuntu.com/xenial/XXXX/xenial-server-cloudimg-amd64-disk1.img
6# Packer: https://releases.hashicorp.com/packer/1.1.3/packer_1.1.3_linux_amd64.zip
7
8# Those script - only example for variables, which should be passed to packer and
9# overwrite variables under /scripts/ directory
10
11# External script sources:
12# http/bootstrap.saltstack.com.sh https://github.com/saltstack/salt-bootstrap
13#
14export IMAGE_NAME="trymcp"
15#
16export APT_MIRANTIS_GPG="http://apt.mirantis.com/public.gpg"
17export APT_MIRANTIS_SALT_REPO="http://apt.mirantis.com/xenial/ nightly salt"
18export APT_REPOSITORY="deb [arch=amd64] http://apt.mirantis.com/xenial/ proposed salt"
19export APT_REPOSITORY_GPG="http://apt.mirantis.com/public.gpg"
Ivan Berezovskiy23035a22018-11-14 13:25:51 +040020export CLUSTER_MODEL="https://gerrit.mcp.mirantis.com/trymcp/drivetrain-model"
Ivan Berezovskiyc46e7c02018-10-29 18:22:09 +040021export CLUSTER_MODEL_REF="master"
22export CLUSTER_NAME="try-mcp"
Ivan Berezovskiy23035a22018-11-14 13:25:51 +040023export FORMULA_VERSION="proposed"
24export GIT_SALT_FORMULAS_SCRIPTS="https://gerrit.mcp.mirantis.com/salt-formulas/salt-formulas-scripts"
Ivan Berezovskiyc46e7c02018-10-29 18:22:09 +040025export MCP_VERSION="proposed"
26export SALTSTACK_GPG="https://repo.saltstack.com/apt/ubuntu/16.04/amd64/2017.7/SALTSTACK-GPG-KEY.pub"
27export SALTSTACK_REPO="http://mirror.mirantis.com/proposed/saltstack-2017.7/xenial xenial main"
28export SCRIPTS_REF="master"
29export UBUNTU_BASEURL="http://mirror.mirantis.com/proposed/ubuntu/"
Ivan Berezovskiyc46e7c02018-10-29 18:22:09 +040030
31###
32# Hard-coded folder in template
33export PACKER_IMAGES_CACHE="${HOME}/packer_images_cache/"
34mkdir -p "${PACKER_IMAGES_CACHE}"
35
36export PACKER_LOG=1
Ivan Berezovskiy23035a22018-11-14 13:25:51 +040037pushd config-drive
Ivan Berezovskiyc3224e52018-11-19 16:52:32 +040038 if [ ! -e model ]; then
39 git clone ${CLUSTER_MODEL} model/
40 pushd model
41 git fetch ${CLUSTER_MODEL} ${CLUSTER_MODEL_REF} && git checkout FETCH_HEAD
42 pushd classes/system
43 git submodule init
44 git submodule update
45 popd
Ivan Berezovskiy23035a22018-11-14 13:25:51 +040046 popd
Ivan Berezovskiyc3224e52018-11-19 16:52:32 +040047 fi
48 if [ ! -e salt_scripts ]; then
49 git clone ${GIT_SALT_FORMULAS_SCRIPTS} salt_scripts/
50 pushd salt_scripts
Ivan Berezovskiy23035a22018-11-14 13:25:51 +040051 git fetch ${GIT_SALT_FORMULAS_SCRIPTS} ${SCRIPTS_REF} && git checkout FETCH_HEAD
Ivan Berezovskiyc3224e52018-11-19 16:52:32 +040052 popd
53 fi
Ivan Berezovskiy23035a22018-11-14 13:25:51 +040054popd
55
56[ -f config-drive/cloudata.iso ] && rm -v config-drive/cloudata.iso
57mkisofs -o config-drive/cloudata.iso -V cidata -r -J --quiet config-drive
Ivan Berezovskiyc46e7c02018-10-29 18:22:09 +040058# For qemu test-build:
Ivan Berezovskiyc46e7c02018-10-29 18:22:09 +040059packer build -only=qemu -parallel=false -on-error=ask template.json
60#rm -rf ~/.packer.d/