* Update `LICENSE` and `.gitignore` * Init * Update `README` * Add Helm chart * Update `README` * Update chart * Add `requirements.yaml` * Update chart * Update chart * Update chart * Update chart * Update `Go` code * Update `Go` code * Update `Go` code * Update `Go` code * Update `README` * Update `README` * Update `Go` files * Update `Go` files * Update `Go` files * Add Helm chart * Update chart * Update `README` * Update `Go` files * Update charts * Update charts * If AWS credentials are not provided in the command-line arguments or ENV variables, the module will try to assume an IAM Role * Rename folder * Update `README` * Update `README` * Rename folder * Update `README` * Add `requirements.yaml` * Update chart
16 lines
363 B
Makefile
16 lines
363 B
Makefile
SHELL = /bin/bash
|
|
|
|
PATH:=$(PATH):$(GOPATH)/bin
|
|
|
|
include $(shell curl --silent -o .build-harness "https://raw.githubusercontent.com/cloudposse/build-harness/master/templates/Makefile.build-harness"; echo .build-harness)
|
|
|
|
|
|
.PHONY : go-get
|
|
go-get:
|
|
go get
|
|
|
|
|
|
.PHONY : go-build
|
|
go-build: go-get
|
|
CGO_ENABLED=0 go build -v -o "./dist/bin/prometheus-to-cloudwatch" *.go
|