-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
57 lines (44 loc) · 2.04 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
################################################################################
# Variables #
################################################################################
OUT_DIR := ./dist
BINARIES ?= rusid injector operator
GIT_COMMIT = $(shell git rev-list -1 HEAD)
GIT_VERSION = $(shell git describe --always --abbrev=7 --dirty)
RUSI_VERSION ?= edge
# Helm template and install setting
HELM:=helm
RELEASE_NAME?=rusi
RUSI_NAMESPACE?=rusi-system
HELM_CHART_ROOT:=./helm
################################################################################
# Go build details #
################################################################################
BASE_PACKAGE_NAME := rusi
DEFAULT_LDFLAGS:=-X $(BASE_PACKAGE_NAME)/internal/version.gitcommit=$(GIT_COMMIT) \
-X $(BASE_PACKAGE_NAME)/internal/version.gitversion=$(GIT_VERSION) \
-X $(BASE_PACKAGE_NAME)/internal/version.version=$(RUSI_VERSION)
################################################################################
# Target: build-linux #
################################################################################
build-linux:
mkdir -p $(OUT_DIR)
CGO_ENABLED=0 GOOS=linux go build -o $(OUT_DIR) -ldflags "$(DEFAULT_LDFLAGS) -s -w" ./cmd/rusid ./cmd/injector ./cmd/operator
modtidy:
go mod tidy
init-proto:
go get google.golang.org/protobuf/cmd/protoc-gen-go google.golang.org/grpc/cmd/protoc-gen-go-grpc
clean-proto:
rm -rf pkg/proto/*
gen-proto:
protoc proto/runtime/v1/* --go-grpc_out=. --go_out=. --go-grpc_opt=require_unimplemented_servers=false
protoc proto/operator/v1/* --go-grpc_out=. --go_out=. --go-grpc_opt=require_unimplemented_servers=false
upgrade-all:
go get -u ./...
go mod tidy
test:
go test -race `go list ./... | grep -v 'rusi/pkg/operator'`
testV:
go test -race -v `go list ./... | grep -v 'rusi/pkg/operator'`
include docker/docker.mk
include pkg/operator/tools/generate_kube_crd.mk