forked from jdbaldry/haproxy-mixin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
65 lines (52 loc) · 2.36 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
.ONESHELL:
.DELETE_ON_ERROR:
SHELL := bash
SHELLOPTS := -euf -o pipefail
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rule
# Adapted from https://suva.sh/posts/well-documented-makefiles/
.PHONY: help
help: ## Display this help
help:
@awk 'BEGIN {FS = ": ##"; printf "Usage:\n make <target>\n\nTargets:\n"} /^[a-zA-Z0-9_\.\-\/%]+: ##/ { printf " %-45s %s\n", $$1, $$2 }' $(MAKEFILE_LIST)
JSONNET_FILES := $(shell find . -name 'vendor' -prune -o -name '*.jsonnet' -print -o -name '*.libsonnet' -print)
JSONNET := jsonnet -J vendor
.PHONY: fmt
fmt: ## Format all files
fmt:
for file in $(JSONNET_FILES); do jsonnetfmt -i "$${file}"; done
.PHONY: lint
lint: ## Lint mixin
lint:
mixtool lint mixin.libsonnet
build: ## Build rules and dashboards
build: alerts/general.yaml rules/rules.yaml dashboards/haproxy-overview.json dashboards/haproxy-backend.json dashboards/haproxy-frontend.json dashboards/haproxy-server.json
alerts/general.yaml: ## Export the general alert rules as YAML
alerts/general.yaml: alerts/general.jsonnet
$(MAKE) fmt JSONNET_FILES="$<"
$(JSONNET) $< > $@
rules/rules.yaml: ## Export recording rules rules as YAML
rules/rules.yaml: rules/rules.jsonnet
$(MAKE) fmt JSONNET_FILES="$<"
$(JSONNET) $< > $@
dashboards/%.json: ## Export a Grafana dashboard definition as JSON
dashboards/%.json: dashboards/%.jsonnet dashboards/dashboards.libsonnet | $(wildcard vendor/github.com/grafana/dashboard-spec/_gen/7.0/**/*.libsonnet)
$(MAKE) fmt JSONNET_FILES="$?"
$(JSONNET) $< > $@
.drone/drone.yml: ## Write out YAML drone configuration
.drone/drone.yml: .drone/drone.jsonnet
drone jsonnet --source $< --target $@ --format --stream
drone lint $@
.PHONY: haproxy-mixin-build-image
haproxy-mixin-build-image: ## Build the haproxy-mixin-build-image
haproxy-mixin-build-image: build-image.nix common.nix $(wildcard nix/*nix)
docker load --input $$(nix-build build-image.nix)
.PHONY: inspect-build-image
inspect-build-image: ## Inspect the haproxy-mixin-build-image
inspect-build-image:
docker save jdbgrafana/haproxy-mixin-build-image | tar x --to-stdout --wildcards '*/layer.tar' | tar tv | sort -nr -k3
dist:
mkdir -p dist
dist/haproxy-mixin.tar.gz: ## Create a release of the haproxy-mixin artifacts
dist/haproxy-mixin.tar.gz: $(wildcard dashboards/*.json) $(wildcard alerts/*yaml) $(wildcard rules/*.yaml) $(wildcard img/*.png) | dist
tar -c -f $@ $^