forked from kubernetes-retired/heapster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
49 lines (36 loc) · 1.33 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
all: build
TAG = v1.1.0-beta2
PREFIX = gcr.io/google_containers
FLAGS =
SUPPORTED_KUBE_VERSIONS = "1.2.4"
TEST_NAMESPACE = heapster-e2e-tests
deps:
go get github.com/tools/godep
build: clean deps
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build ./...
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -o heapster k8s.io/heapster/metrics
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -o eventer k8s.io/heapster/events
sanitize:
hooks/check_boilerplate.sh
hooks/check_gofmt.sh
hooks/run_vet.sh
test-unit: clean deps sanitize build
GOOS=linux GOARCH=amd64 godep go test --test.short -race ./... $(FLAGS)
test-unit-cov: clean deps sanitize build
hooks/coverage.sh
test-integration: clean deps build
godep go test -v --timeout=30m ./integration/... --vmodule=*=2 $(FLAGS) --namespace=$(TEST_NAMESPACE) --kube_versions=$(SUPPORTED_KUBE_VERSIONS)
container: build
cp heapster deploy/docker/heapster
cp eventer deploy/docker/eventer
docker build -t $(PREFIX)/heapster:$(TAG) deploy/docker/
grafana:
docker build -t $(PREFIX)/heapster_grafana:$(TAG) grafana/
influxdb:
docker build -t $(PREFIX)/heapster_influxdb:$(TAG) influxdb/
clean:
rm -f heapster
rm -f eventer
rm -f deploy/docker/heapster
rm -f deploy/docker/eventer
.PHONY: all deps build sanitize test-unit test-unit-cov test-integration container grafana influxdb clean