forked from infobloxopen/atlas-contacts-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
102 lines (82 loc) · 2.6 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
PROJECT_ROOT := github.com/infobloxopen/atlas-contacts-app
BUILD_PATH := bin
DOCKERFILE_PATH := $(CURDIR)/docker
# configuration for image names
USERNAME := $(USER)
GIT_COMMIT := $(shell git describe --dirty=-unsupported --always || echo pre-commit)
IMAGE_VERSION ?= $(USERNAME)-dev-$(GIT_COMMIT)
IMAGE_REGISTRY ?= infoblox
# configuration for server binary and image
SERVER_BINARY := $(BUILD_PATH)/server
SERVER_PATH := $(PROJECT_ROOT)/cmd/server
SERVER_IMAGE := $(IMAGE_REGISTRY)/contacts-server
SERVER_DOCKERFILE := $(DOCKERFILE_PATH)/Dockerfile
# configuration for the protobuf gentool
SRCROOT_ON_HOST := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))
SRCROOT_IN_CONTAINER := /go/src/$(PROJECT_ROOT)
DOCKER_RUNNER := docker run --rm
DOCKER_RUNNER += -v $(SRCROOT_ON_HOST):$(SRCROOT_IN_CONTAINER)
DOCKER_GENERATOR := infoblox/atlas-gentool:latest
GENERATOR := $(DOCKER_RUNNER) $(DOCKER_GENERATOR)
# configuration for the database
DATABASE_ADDRESS ?= localhost:5432
# configuration for building on host machine
GO_CACHE := -pkgdir $(BUILD_PATH)/go-cache
GO_BUILD_FLAGS ?= $(GO_CACHE) -i -v
GO_TEST_FLAGS ?= -v -cover
GO_PACKAGES := $(shell go list ./... | grep -v vendor)
.PHONY: all
all: vendor docker
.PHONY: fmt
fmt:
@go fmt $(GO_PACKAGES)
.PHONY: test
test: fmt
@go test $(GO_TEST_FLAGS) $(GO_PACKAGES)
.PHONY: test-with-integration
test-with-integration: fmt
@go test $(GO_TEST_FLAGS) -tags=integration $(GO_PACKAGES)
.PHONY: docker
docker:
@docker build -f $(SERVER_DOCKERFILE) -t $(SERVER_IMAGE):$(IMAGE_VERSION) .
@docker tag $(SERVER_IMAGE):$(IMAGE_VERSION) $(SERVER_IMAGE):latest
@docker image prune -f --filter label=stage=server-intermediate
.PHONY: push
push:
@docker push $(SERVER_IMAGE)
.PHONY: protobuf
protobuf:
@$(GENERATOR) \
--go_out=plugins=grpc:. \
--grpc-gateway_out=logtostderr=true:. \
--gorm_out="engine=postgres:." \
--validate_out="lang=go:." $(PROJECT_ROOT)/pkg/pb/contacts.proto
.PHONY: vendor
vendor:
@dep ensure -vendor-only
.PHONY: vendor-update
vendor-update:
@dep ensure
.PHONY: clean
clean:
@docker rmi -f $(shell docker images -q $(SERVER_IMAGE)) || true
.PHONY: up
up:
kubectl apply -f deploy/ns.yaml
kubectl apply -f deploy/kube.yaml
.PHONY: down
down:
kubectl delete -f deploy/ns.yaml
.PHONY: nginx-up
nginx-up:
kubectl apply -f deploy/nginx.yaml
.PHONY: nginx-down
nginx-down:
kubectl delete -f deploy/nginx.yaml
.PHONY: db-up
db-up:
kubectl apply -f deploy/ns.yaml
kubectl apply -f deploy/contacts-localdb.yaml
.PHONY: db-down
db-down:
kubectl delete -f deploy/contacts-localdb.yaml