alpine-zdt-images/Makefile

33 lines
1.2 KiB
Makefile
Raw Normal View History

2017-12-25 02:06:54 +00:00
.PHONY: ami
ami: build/convert
[ -f variables.yaml ] || cp variables.yaml-default variables.yaml
build/convert variables.yaml > build/variables.json
2017-12-25 02:06:54 +00:00
build/convert alpine-ami.yaml > build/alpine-ami.json
packer build -var-file=build/variables.json build/alpine-ami.json
2017-12-25 02:06:54 +00:00
build/convert:
[ -d ".py3" ] || python3 -m venv .py3
2017-12-25 04:53:29 +00:00
.py3/bin/pip install pyyaml boto3
2017-12-25 02:06:54 +00:00
[ -d "build" ] || mkdir build
# Make stupid simple little YAML/JSON converter so we can maintain our
# packer configs in a sane format that allows comments but also use packer
# which only supports JSON
@echo "#!`pwd`/.py3/bin/python" > build/convert
@echo "import yaml, json, sys" >> build/convert
@echo "y = yaml.load(open(sys.argv[1]))" >> build/convert
@echo "for k in ['ami_access','deploy_regions','add_repos','add_pkgs']:" >> build/convert
@echo " if k in y and isinstance(y[k], list):" >> build/convert
@echo " y[k] = ','.join(str(x) for x in y[k])" >> build/convert
@echo "json.dump(y, sys.stdout, indent=4, separators=(',', ': '))" >> build/convert
2017-12-25 02:06:54 +00:00
@chmod +x build/convert
2017-12-25 05:03:24 +00:00
%.py: %.py.in
2017-12-25 04:53:29 +00:00
sed "s|@PYTHON@|#!`pwd`/.py3/bin/python|" $< > $@
chmod +x $@
2017-12-25 02:06:54 +00:00
.PHONY: clean
clean:
2017-12-25 05:03:24 +00:00
rm -rf build .py3 scrub-old-amis.py gen-readme.py