-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile
91 lines (65 loc) · 3.94 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
FILES = $(shell find . -type f -name '*.go')
RELEASE_VERSION ?= v0.0.0-$(shell git rev-parse --short HEAD)
RELEASE_FULLCOMMIT ?= $(shell git rev-parse HEAD)
FLAGS = -X 'github.com/percona/everest/pkg/version.Version=$(RELEASE_VERSION)' \
-X 'github.com/percona/everest/pkg/version.FullCommit=$(RELEASE_FULLCOMMIT)' \
LD_FLAGS_API = -ldflags " $(FLAGS) -X 'github.com/percona/everest/pkg/version.ProjectName=Everest API Server'"
LD_FLAGS_CLI = -ldflags " $(FLAGS) -X 'github.com/percona/everest/pkg/version.ProjectName=everestctl'"
LD_FLAGS_CLI_TEST = -ldflags " $(FLAGS) -X 'github.com/percona/everest/pkg/version.ProjectName=everestctl' \
-X 'github.com/percona/everest/pkg/version.EverestChannelOverride=fast-v0'"
default: help
help: ## Display this help message
@echo "Please use \`make <target>\` where <target> is one of:"
@grep '^[a-zA-Z]' $(MAKEFILE_LIST) | \
awk -F ':.*?## ' 'NF==2 {printf " %-26s%s\n", $$1, $$2}'
init: ## Install development tools
cd tools && go generate -x -tags=tools
build: ## Build binaries
go build -v $(LD_FLAGS_API) -o bin/everest ./cmd
build-cli: ## Build binaries
go build -tags debug -v $(LD_FLAGS_CLI_TEST) -o bin/everestctl ./cmd/cli
release: FLAGS += -X 'github.com/percona/everest/cmd/config.TelemetryURL=https://check.percona.com' -X 'github.com/percona/everest/cmd/config.TelemetryInterval=24h'
release: build ## Build release version
rc: FLAGS += -X 'github.com/percona/everest/cmd/config.TelemetryURL=https://check-dev.percona.com' -X 'github.com/percona/everest/cmd/config.TelemetryInterval=24h'
rc: build ## Build RC version
release-cli:
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -v $(LD_FLAGS_CLI) -o ./dist/everestctl-linux-amd64 ./cmd/cli
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -v $(LD_FLAGS_CLI) -o ./dist/everestctl-linux-arm64 ./cmd/cli
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -v $(LD_FLAGS_CLI) -o ./dist/everestctl-darwin-amd64 ./cmd/cli
CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -v $(LD_FLAGS_CLI) -o ./dist/everestctl-darwin-arm64 ./cmd/cli
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -v $(LD_FLAGS_CLI) -o ./dist/everestctl.exe ./cmd/cli
build-debug: ## Build binaries
go build -tags debug -v $(LD_FLAGS_API) -o bin/everest ./cmd
gen: ## Generate code
go generate ./...
make format
format: ## Format source code
bin/gofumpt -l -w $(FILES)
bin/goimports -local github.com/percona/everest -l -w $(FILES)
bin/gci write --section Standard --section Default --section "Prefix(github.com/percona/everest)" $(FILES)
check: ## Run checks/linters for the whole project
bin/go-consistent -pedantic ./...
LOG_LEVEL=error bin/golangci-lint run
test: ## Run tests
go test -race -timeout=10m ./...
test-cover: ## Run tests and collect per-package coverage information
go test -race -timeout=10m -count=1 -coverprofile=cover.out -covermode=atomic ./...
test-crosscover: ## Run tests and collect cross-package coverage information
go test -race -timeout=10m -count=1 -coverprofile=crosscover.out -covermode=atomic -p=1 -coverpkg=./... ./...
run: build ## Run binary
bin/everest
run-debug: build-debug ## Run binary
TELEMETRY_URL=https://check-dev.percona.com \
TELEMETRY_INTERVAL=30m \
bin/everest
run-cli-install: build-cli
bin/everestctl install --skip-wizard --namespaces=everest
cert: ## Install dev TLS certificates
mkcert -install
mkcert -cert-file=dev-cert.pem -key-file=dev-key.pem everest everest.localhost 127.0.0.1
k8s: ## Create a local minikube cluster
minikube start --nodes=3 --cpus=4 --memory=4g --apiserver-names host.docker.internal
k8s-macos: k8s ## Create a local minikube cluster with MacOS specific configuration
minikube addons disable storage-provisioner
kubectl delete storageclass standard
kubectl apply -f ./dev/kubevirt-hostpath-provisioner.yaml