mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
d44cc14c6b
* added packer build for DigitalOcean Droplets * fixed typo * added packer RELEASE_GUIDE.md, Makefile * Apply suggestions from code review Co-authored-by: Roman Khavronenko <hagen1778@gmail.com> * added corrections amd improvements * added packer link & templating for sed version * fixed typo Co-authored-by: Aliaksandr Valialkin <valyala@gmail.com> Co-authored-by: Roman Khavronenko <hagen1778@gmail.com>
9 lines
369 B
Makefile
9 lines
369 B
Makefile
RELEASE_NAME := vm-oneclick-droplet
|
|
VM_VERSION ?= $(shell git describe --abbrev=0 --tags)
|
|
|
|
.PHONY: $(MAKECMDGOALS)
|
|
|
|
release-victoria-metrics-digitalocean-oneclick-droplet:
|
|
cp ./files/etc/update-motd.d/99-one-click.tpl ./files/etc/update-motd.d/99-one-click
|
|
sed -i -e "s/VM_VERSION/${VM_VERSION}/g" ./files/etc/update-motd.d/99-one-click
|
|
packer build template.pkr.hcl
|