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 | # |
| 16 | export APT_MIRANTIS_GPG="http://apt.mirantis.com/public.gpg" |
| 17 | export APT_MIRANTIS_SALT_REPO="http://apt.mirantis.com/xenial/ nightly salt" |
| 18 | export APT_REPOSITORY="deb [arch=amd64] http://apt.mirantis.com/xenial/ proposed salt" |
| 19 | export APT_REPOSITORY_GPG="http://apt.mirantis.com/public.gpg" |
| 20 | export CLUSTER_MODEL="https://github.com/LotharKAtt/trymcp-drivetrain-model.git" |
| 21 | export CLUSTER_MODEL_REF="master" |
| 22 | export CLUSTER_NAME="try-mcp" |
| 23 | export FORMULA_VERSION="nightly" |
| 24 | export GIT_SALT_FORMULAS_SCRIPTS="https://github.com/salt-formulas/salt-formulas-scripts.git" |
| 25 | export MCP_VERSION="proposed" |
| 26 | export SALTSTACK_GPG="https://repo.saltstack.com/apt/ubuntu/16.04/amd64/2017.7/SALTSTACK-GPG-KEY.pub" |
| 27 | export SALTSTACK_REPO="http://mirror.mirantis.com/proposed/saltstack-2017.7/xenial xenial main" |
| 28 | export SCRIPTS_REF="master" |
| 29 | export UBUNTU_BASEURL="http://mirror.mirantis.com/proposed/ubuntu/" |
| 30 | export BINARY_MCP_VERSION="proposed" |
| 31 | |
| 32 | ### |
| 33 | # Hard-coded folder in template |
| 34 | export PACKER_IMAGES_CACHE="${HOME}/packer_images_cache/" |
| 35 | mkdir -p "${PACKER_IMAGES_CACHE}" |
| 36 | |
| 37 | export PACKER_LOG=1 |
| 38 | # For qemu test-build: |
| 39 | cloud-localds --hostname ubuntu --dsmode local config-drive/cloudata.iso config-drive/user-data.yaml |
| 40 | packer build -only=qemu -parallel=false -on-error=ask template.json |
| 41 | #rm -rf ~/.packer.d/ |