commit | bd80ff4f9a2571003bdf2bef4c03e125de894d26 | [log] [tgz] |
---|---|---|
author | Ivan Berezovskiy <iberezovskiy@mirantis.com> | Fri Nov 30 14:38:02 2018 +0400 |
committer | Ivan Berezovskiy <iberezovskiy@mirantis.com> | Fri Nov 30 16:47:52 2018 +0400 |
tree | a7bd89c33e188d773b3e65f920033f9b9990f4aa | |
parent | e2a4de4605758684fb97f4d714c5b330404459d3 [diff] |
Small refactoring for packer scripts * Get rid of formula version variable and use MCP_VERSION instead * Remove docker images pull * Remove adding of jenkins theme b/c it's already inside docker image * Move flag for jenkins in docker to /opt Closes-task: #PROD-24048 (PROD:24048) Change-Id: I41a1c4771d9cf890bd371264a35727ded6fc52a8
Packer templates are used to:
PACKER_URL="https://dl.bintray.com/mitchellh/packer/packer_0.8.2_linux_amd64.zip" PACKER_ZIP=$(basename ${PACKER_URL}) PACKER_ZIP_MD5="bc37abe5e183a11bd8c1b2efc385059b" mkdir -p ~/bin/packer cd ~/bin/packer export PATH="${PATH}:~/bin/packer" wget -O ${PACKER_ZIP} ${PACKER_URL} echo "${PACKER_ZIP_MD5} ${PACKER_ZIP}" >> md5sum md5sum -c --status md5sum unzip ${PACKER_ZIP}
Enter build directory by selecting OS type and version. You should see file template.json.
Start building some images:
packer build -only=virtualbox-iso template.json
Directory http/ contains OS installer config files (preseed/kickstart/..)
Directory scripts/ contains set of scripts for provision after image build.