This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
90 lines (76 loc) · 3.05 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
export DOCKER_BUILDKIT=1
SERVICE_NAME ?= component-inventory
GIT_COMMIT := $(shell git rev-parse --short HEAD)
GIT_BRANCH := $(shell git symbolic-ref -q --short HEAD)
GIT_SUMMARY := $(shell git describe --tags --dirty --always)
VERSION := $(shell git describe --tags 2> /dev/null)
BUILD_DATE := $(shell date +%s)
GO_VERSION := $(shell expr `go version |cut -d ' ' -f3 |cut -d. -f2` \>= 20)
LDFLAG_LOCATION := github.com/metal-toolbox/${SERVICE_NAME}/internal/version
DOCKER_IMAGE ?= ghcr.io/metal-toolbox/${SERVICE_NAME}
SANDBOX_IMAGE ?= localhost:5001/${SERVICE_NAME}
SANDBOX_TEMPLATE_DIR ?= ${HOME}/Development/sandbox/templates
.DEFAULT_GOAL := help
## lint
lint:
golangci-lint run --config .golangci.yml
## Go test
test: lint
CGO_ENABLED=0 go test -timeout 1m -v -covermode=atomic ./...
build:
CGO_ENABLED=0 go build -o ${SERVICE_NAME}
clean:
rm -rf ${SERVICE_NAME}
image:
docker build -t ${DOCKER_IMAGE}:latest . \
--build-arg APP_NAME=${SERVICE_NAME} \
--build-arg LDFLAG_LOCATION=${LDFLAG_LOCATION} \
--build-arg GIT_COMMIT=${GIT_COMMIT} --build-arg GIT_BRANCH=${GIT_BRANCH} \
--build-arg GIT_SUMMARY=${GIT_SUMMARY} --build-arg VERSION=${VERSION} \
--build-arg BUILD_DATE=${BUILD_DATE} \
-f Dockerfile
goreleaser-image:
docker build -t ${DOCKER_IMAGE}:latest . \
--build-arg APP_NAME=${SERVICE_NAME} \
-f Dockerfile.goreleaser
push-sandbox-image: image
docker tag ${DOCKER_IMAGE}:latest ${SANDBOX_IMAGE}:latest
docker push localhost:5001/${SERVICE_NAME}:latest
kind load docker-image localhost:5001/${SERVICE_NAME}:latest
push-image: image
docker push ${DOCKER_IMAGE}:latest
# if you want to use the sandbox repo, this target puts the files from this service in place. You will
# need to update the sandbox Makefile to get helm to load everything properly.
load-sandbox:
@cp helm/values.yaml "${SANDBOX_TEMPLATE_DIR}/cis-values.yaml"
@cp helm/templates/service.yaml "${SANDBOX_TEMPLATE_DIR}/cis-service.yaml"
@cp helm/templates/deployment.yaml "${SANDBOX_TEMPLATE_DIR}/cis-deployment.yaml"
@cp helm/templates/configmap.yaml "${SANDBOX_TEMPLATE_DIR}/cis-configmap.yaml"
@echo "Be sure to do a helm (re)load to get the service started"
## generate mock client
gen-client-mock:
go install go.uber.org/mock/mockgen@latest
mockgen -package=client -source=pkg/api/client/client.go -destination=pkg/api/client/mock/mockclient.go
# https://gist.github.com/prwhite/8168133
# COLORS
GREEN := $(shell tput -Txterm setaf 2)
YELLOW := $(shell tput -Txterm setaf 3)
WHITE := $(shell tput -Txterm setaf 7)
RESET := $(shell tput -Txterm sgr0)
TARGET_MAX_CHAR_NUM=20
## Show help
help:
@echo ''
@echo 'Usage:'
@echo ' ${YELLOW}make${RESET} ${GREEN}<target>${RESET}'
@echo ''
@echo 'Targets:'
@awk '/^[a-zA-Z\-\\_0-9]+:/ { \
helpMessage = match(lastLine, /^## (.*)/); \
if (helpMessage) { \
helpCommand = substr($$1, 0, index($$1, ":")-1); \
helpMessage = substr(lastLine, RSTART + 3, RLENGTH); \
printf " ${YELLOW}%-$(TARGET_MAX_CHAR_NUM)s${RESET} ${GREEN}%s${RESET}\n", helpCommand, helpMessage; \
} \
} \
{ lastLine = $$0 }' $(MAKEFILE_LIST)