mirror of
https://github.com/Luzifer/hetzner-alpine-k8s.git
synced 2024-11-08 14:20:01 +00:00
Knut Ahlers
7ba01f01a1
- sever connection to upstream - remove Docker setup - use local packer binary to build - add support for writing arbitrary files - cleanup repo Signed-off-by: Knut Ahlers <knut@ahlers.me>
39 lines
962 B
Makefile
39 lines
962 B
Makefile
ENVRUN_VERSION := 0.7.1
|
|
PACKER_VERSION := 1.10.2
|
|
YQ_VERSION := 4.31.2
|
|
|
|
ENVRUN := ./envrun_$(ENVRUN_VERSION)
|
|
PACKER := ./packer_$(PACKER_VERSION)
|
|
YQ := ./yq_$(YQ_VERSION)
|
|
|
|
default:
|
|
|
|
config.json: $(YQ)
|
|
$(YQ) -ojson . config.yaml | jq -S . >config.json
|
|
|
|
create-snapshot: config.json $(ENVRUN) $(PACKER)
|
|
$(PACKER) init alpine.pkr.hcl
|
|
$(ENVRUN) -- $(PACKER) build -var-file=config.json alpine.pkr.hcl
|
|
|
|
# --- Tools
|
|
|
|
tools: $(ENVRUN) $(PACKER) $(YQ)
|
|
|
|
$(ENVRUN):
|
|
rm envrun_*
|
|
curl -sSfL "https://github.com/Luzifer/envrun/releases/download/v$(ENVRUN_VERSION)/envrun_linux_amd64.tar.gz" | tar -xz
|
|
mv envrun_linux_amd64 $@
|
|
|
|
$(PACKER):
|
|
rm packer_*
|
|
curl -sSfLo packer.zip "https://releases.hashicorp.com/packer/$(PACKER_VERSION)/packer_$(PACKER_VERSION)_linux_amd64.zip"
|
|
unzip packer.zip
|
|
rm packer.zip
|
|
mv packer $@
|
|
|
|
$(YQ):
|
|
rm yq_*
|
|
curl -sSfLo $@ "https://github.com/mikefarah/yq/releases/download/v$(YQ_VERSION)/yq_linux_amd64"
|
|
chmod +x $@
|
|
|
|
.PHONY: config.json
|