Ivan Berezovskiy | c46e7c0 | 2018-10-29 18:22:09 +0400 | [diff] [blame] | 1 | #!/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 | # |
| 14 | export IMAGE_NAME="trymcp" |
| 15 | # |
Ivan Berezovskiy | 23035a2 | 2018-11-14 13:25:51 +0400 | [diff] [blame] | 16 | export CLUSTER_MODEL="https://gerrit.mcp.mirantis.com/trymcp/drivetrain-model" |
Ivan Berezovskiy | c46e7c0 | 2018-10-29 18:22:09 +0400 | [diff] [blame] | 17 | export CLUSTER_MODEL_REF="master" |
| 18 | export CLUSTER_NAME="try-mcp" |
Denis Egorenko | 96e8b06 | 2019-04-03 18:05:50 +0400 | [diff] [blame^] | 19 | export MCP_VERSION="nightly" |
Ivan Berezovskiy | 7630eaf | 2018-12-17 16:33:14 +0400 | [diff] [blame] | 20 | export SALTSTACK_REPO="http://mirror.mirantis.com/${MCP_VERSION}/saltstack-2017.7/xenial xenial main" |
Ivan Berezovskiy | c46e7c0 | 2018-10-29 18:22:09 +0400 | [diff] [blame] | 21 | export SALTSTACK_GPG="https://repo.saltstack.com/apt/ubuntu/16.04/amd64/2017.7/SALTSTACK-GPG-KEY.pub" |
Ivan Berezovskiy | 7630eaf | 2018-12-17 16:33:14 +0400 | [diff] [blame] | 22 | export APT_MIRANTIS_SALT_REPO="http://mirror.mirantis.com/${MCP_VERSION}/salt-formulas/xenial xenial main" |
| 23 | export APT_MIRANTIS_SALT_GPG="http://mirror.mirantis.com/${MCP_VERSION}/salt-formulas/xenial/archive-salt-formulas.key" |
| 24 | export GIT_SALT_FORMULAS_SCRIPTS="https://gerrit.mcp.mirantis.com/salt-formulas/salt-formulas-scripts" |
Ivan Berezovskiy | c46e7c0 | 2018-10-29 18:22:09 +0400 | [diff] [blame] | 25 | export SCRIPTS_REF="master" |
Ivan Berezovskiy | 7630eaf | 2018-12-17 16:33:14 +0400 | [diff] [blame] | 26 | export UBUNTU_BASEURL="http://mirror.mirantis.com/${MCP_VERSION}/ubuntu/" |
Ivan Berezovskiy | c46e7c0 | 2018-10-29 18:22:09 +0400 | [diff] [blame] | 27 | |
| 28 | ### |
| 29 | # Hard-coded folder in template |
| 30 | export PACKER_IMAGES_CACHE="${HOME}/packer_images_cache/" |
| 31 | mkdir -p "${PACKER_IMAGES_CACHE}" |
| 32 | |
| 33 | export PACKER_LOG=1 |
Ivan Berezovskiy | 23035a2 | 2018-11-14 13:25:51 +0400 | [diff] [blame] | 34 | pushd config-drive |
Ivan Berezovskiy | c3224e5 | 2018-11-19 16:52:32 +0400 | [diff] [blame] | 35 | if [ ! -e model ]; then |
| 36 | git clone ${CLUSTER_MODEL} model/ |
| 37 | pushd model |
| 38 | git fetch ${CLUSTER_MODEL} ${CLUSTER_MODEL_REF} && git checkout FETCH_HEAD |
| 39 | pushd classes/system |
| 40 | git submodule init |
| 41 | git submodule update |
| 42 | popd |
Ivan Berezovskiy | 23035a2 | 2018-11-14 13:25:51 +0400 | [diff] [blame] | 43 | popd |
Ivan Berezovskiy | c3224e5 | 2018-11-19 16:52:32 +0400 | [diff] [blame] | 44 | fi |
| 45 | if [ ! -e salt_scripts ]; then |
| 46 | git clone ${GIT_SALT_FORMULAS_SCRIPTS} salt_scripts/ |
| 47 | pushd salt_scripts |
Ivan Berezovskiy | 23035a2 | 2018-11-14 13:25:51 +0400 | [diff] [blame] | 48 | git fetch ${GIT_SALT_FORMULAS_SCRIPTS} ${SCRIPTS_REF} && git checkout FETCH_HEAD |
Ivan Berezovskiy | c3224e5 | 2018-11-19 16:52:32 +0400 | [diff] [blame] | 49 | popd |
| 50 | fi |
Ivan Berezovskiy | 23035a2 | 2018-11-14 13:25:51 +0400 | [diff] [blame] | 51 | popd |
| 52 | |
| 53 | [ -f config-drive/cloudata.iso ] && rm -v config-drive/cloudata.iso |
| 54 | mkisofs -o config-drive/cloudata.iso -V cidata -r -J --quiet config-drive |
Ivan Berezovskiy | c46e7c0 | 2018-10-29 18:22:09 +0400 | [diff] [blame] | 55 | # For qemu test-build: |
Ivan Berezovskiy | c46e7c0 | 2018-10-29 18:22:09 +0400 | [diff] [blame] | 56 | packer build -only=qemu -parallel=false -on-error=ask template.json |
| 57 | #rm -rf ~/.packer.d/ |