-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
executable file
·45 lines (36 loc) · 1.16 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
PROJECT?=github.com/jusongchen/canis
APP?=canis
PORT?=8000
RELEASE?=1.0.1
COMMIT?=$(shell git rev-parse --short HEAD)
BUILD_TIME?=$(shell date -u '+%Y-%m-%d_%H:%M:%S')
DOCKERHUBUSER?=juchen
CONTAINER_IMAGE?=docker.io/${DOCKERHUBUSER}/${APP}
GOOS?=linux
GOARCH?=amd64
clean:
rm -f ${APP}
build: clean
CGO_ENABLED=0 GOOS=${GOOS} GOARCH=${GOARCH} go build \
-ldflags "-s -w -X ${PROJECT}/version.Release=${RELEASE} \
-X ${PROJECT}/version.Commit=${COMMIT} -X ${PROJECT}/version.BuildTime=${BUILD_TIME}" \
-o ${APP}
container: build
docker build -t $(CONTAINER_IMAGE):$(RELEASE) .
run: container
docker stop $(APP):$(RELEASE) || true && docker rm $(APP):$(RELEASE) || true
docker run --name ${APP} -p ${PORT}:${PORT} --rm \
-e "PORT=${PORT}" \
$(DOCKERHUBUSER)/$(APP):$(RELEASE)
test:
go test -v -race ./...
push: container
docker push $(CONTAINER_IMAGE):$(RELEASE)
minikube: push
for t in $(shell find ./kubernetes/canis -type f -name "*.yaml"); do \
cat $$t | \
sed -E "s/\{\{(\s*)\.Release(\s*)\}\}/$(RELEASE)/g" | \
sed -E "s/\{\{(\s*)\.ServiceName(\s*)\}\}/$(APP)/g"; \
echo ---; \
done > tmp.yaml
kubectl apply -f tmp.yaml