Jiri Broulik | 4ea221c | 2018-04-10 13:48:06 +0200 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | # pre-requirments: |
| 4 | # apt-get install cloud-localds |
azvyagintsev | ffa75b4 | 2018-06-06 20:38:54 +0300 | [diff] [blame] | 5 | # Cloudimg: wget https://cloud-images.ubuntu.com/xenial/XXXX/xenial-server-cloudimg-amd64-disk1.img |
Jiri Broulik | 4ea221c | 2018-04-10 13:48:06 +0200 | [diff] [blame] | 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 | # |
azvyagintsev | 0adfe68 | 2018-06-13 16:29:40 +0300 | [diff] [blame] | 14 | export IMAGE_NAME="cfg01" |
azvyagintsev | ffa75b4 | 2018-06-06 20:38:54 +0300 | [diff] [blame] | 15 | # |
Ivan Berezovskiy | 23035a2 | 2018-11-14 13:25:51 +0400 | [diff] [blame] | 16 | export CLUSTER_MODEL="http://gerrit.mcp.mirantis.com/mcp/mcp-drivetrain-model" |
| 17 | export CLUSTER_MODEL_REF="master" |
Ivan Berezovskiy | 7630eaf | 2018-12-17 16:33:14 +0400 | [diff] [blame] | 18 | export CLUSTER_NAME="mcp-day01" |
| 19 | export MCP_VERSION="proposed" |
| 20 | export SALTSTACK_REPO="http://mirror.mirantis.com/${MCP_VERSION}/saltstack-2017.7/xenial xenial main" |
azvyagintsev | 0f697cf | 2018-06-22 11:44:13 +0300 | [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" |
Ivan Berezovskiy | 23035a2 | 2018-11-14 13:25:51 +0400 | [diff] [blame] | 24 | export GIT_SALT_FORMULAS_SCRIPTS="https://gerrit.mcp.mirantis.com/salt-formulas/salt-formulas-scripts" |
Ivan Berezovskiy | 7630eaf | 2018-12-17 16:33:14 +0400 | [diff] [blame] | 25 | export SCRIPTS_REF="master" |
| 26 | export UBUNTU_BASEURL="http://mirror.mirantis.com/${MCP_VERSION}/ubuntu/" |
azvyagintsev | ffa75b4 | 2018-06-06 20:38:54 +0300 | [diff] [blame] | 27 | ### |
azvyagintsev | 0f697cf | 2018-06-22 11:44:13 +0300 | [diff] [blame] | 28 | # Hard-coded folder in template |
| 29 | export PACKER_IMAGES_CACHE="${HOME}/packer_images_cache/" |
| 30 | mkdir -p "${PACKER_IMAGES_CACHE}" |
Jiri Broulik | 4ea221c | 2018-04-10 13:48:06 +0200 | [diff] [blame] | 31 | |
| 32 | export PACKER_LOG=1 |
Ivan Berezovskiy | 23035a2 | 2018-11-14 13:25:51 +0400 | [diff] [blame] | 33 | pushd config-drive |
Ivan Berezovskiy | c3224e5 | 2018-11-19 16:52:32 +0400 | [diff] [blame] | 34 | if [ ! -e model ]; then |
| 35 | git clone ${CLUSTER_MODEL} model/ |
| 36 | pushd model |
| 37 | git fetch ${CLUSTER_MODEL} ${CLUSTER_MODEL_REF} && git checkout FETCH_HEAD |
| 38 | pushd classes/system |
| 39 | git submodule init |
| 40 | git submodule update |
| 41 | popd |
Ivan Berezovskiy | 23035a2 | 2018-11-14 13:25:51 +0400 | [diff] [blame] | 42 | popd |
Ivan Berezovskiy | c3224e5 | 2018-11-19 16:52:32 +0400 | [diff] [blame] | 43 | fi |
| 44 | if [ ! -e salt_scripts ]; then |
| 45 | git clone ${GIT_SALT_FORMULAS_SCRIPTS} salt_scripts/ |
| 46 | pushd salt_scripts |
Ivan Berezovskiy | 23035a2 | 2018-11-14 13:25:51 +0400 | [diff] [blame] | 47 | git fetch ${GIT_SALT_FORMULAS_SCRIPTS} ${SCRIPTS_REF} && git checkout FETCH_HEAD |
Ivan Berezovskiy | c3224e5 | 2018-11-19 16:52:32 +0400 | [diff] [blame] | 48 | popd |
| 49 | fi |
Ivan Berezovskiy | 23035a2 | 2018-11-14 13:25:51 +0400 | [diff] [blame] | 50 | popd |
| 51 | |
| 52 | [ -f config-drive/cloudata.iso ] && rm -v config-drive/cloudata.iso |
| 53 | mkisofs -o config-drive/cloudata.iso -V cidata -r -J --quiet config-drive |
| 54 | |
Jiri Broulik | 4ea221c | 2018-04-10 13:48:06 +0200 | [diff] [blame] | 55 | # For qemu test-build: |
azvyagintsev | ffa75b4 | 2018-06-06 20:38:54 +0300 | [diff] [blame] | 56 | packer build -only=qemu -parallel=false -on-error=ask template.json |
| 57 | #rm -rf ~/.packer.d/ |