This repository has been archived by the owner on Jun 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathMakefile
69 lines (57 loc) · 1.92 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
RELEASE_VERSION =v0.11.1
SERVICE_NAME ?=http-echo-service
DOCKER_USERNAME ?=$(DOCKER_USER)
.PHONY: all
all: help
.PHONY: tidy
tidy: ## Updates the go modules and vendors all dependencies
go mod tidy
go mod vendor
.PHONY: test
test: tidy ## Tests the entire project
go test -count=1 -race ./...
.PHONY: run
run: tidy ## Runs uncompiled code in Dapr
dapr run \
--app-id $(SERVICE_NAME) \
--app-port 8080 \
--app-protocol http \
--dapr-http-port 3500 \
go run main.go
.PHONY: invoke
invoke: ## Invokes service through Dapr API
curl -d '{ "message": "ping" }' \
-H "Content-type: application/json" \
"http://localhost:3500/v1.0/invoke/$(SERVICE_NAME)/method/echo"
.PHONY: image
image: tidy ## Builds and publish docker image
docker build -t "$(DOCKER_USERNAME)/$(SERVICE_NAME):$(RELEASE_VERSION)" .
docker push "$(DOCKER_USERNAME)/$(SERVICE_NAME):$(RELEASE_VERSION)"
.PHONY: deploy
deploy: ## Deploys prebuild image to k8s using currently selected context
kubectl apply -f deployment.yaml
kubectl rollout restart deployment/grpc-echo-service
kubectl rollout status deployment/grpc-echo-service
.PHONY: call
call: ## Invokes service through Dapr API
$(eval API_TOKEN=$(shell kubectl get secret dapr-api-token -o jsonpath="{.data.token}" | base64 --decode))
curl -d '{ "message": "ping" }' \
-H "Content-type: application/json" \
-H "dapr-api-token: $(API_TOKEN)" \
"https://api.cloudylabs.dev/v1.0/invoke/$(SERVICE_NAME)/method/echo"
.PHONY: lint
lint: ## Lints the entire project
golangci-lint run --timeout=3m
.PHONY: tag
tag: ## Creates release tag
git tag $(RELEASE_VERSION)
git push origin $(RELEASE_VERSION)
.PHONY: clean
clean: ## Cleans up generated files
go clean
rm -fr ./bin
rm -fr ./vendor
.PHONY: help
help: ## Display available commands
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk \
'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'