-
Notifications
You must be signed in to change notification settings - Fork 21
/
Makefile
109 lines (89 loc) · 3.1 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# Image URL to use all building/pushing image targets
IMG ?= curve2operator/curve-operator
# Image tag to use all building/pushing image targets
# TAG ?= $(shell git rev-parse --short HEAD)
TAG ?= v1.0.6
# Produce CRDs that work back to Kubernetes 1.11 (no version conversion)
CRD_OPTIONS ?= "crd:trivialVersions=true"
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
ifeq (,$(shell go env GOBIN))
GOBIN=$(shell go env GOPATH)/bin
else
GOBIN=$(shell go env GOBIN)
endif
# 1. make generator : generate DeepCopy, DeepCopyInto and DeepCopyObject
# 2. make manfifests: generator crd and rbac and webhook resources to manifests yaml
# 3. make install: install crd into cluster
# 4. make deploy: deploy all resource of manifests.yaml into cluster.
# 5. make run: generate fmt vet manifests then go run ./main.go
all: curve-operator
# Run tests
test: generate fmt vet manifests
go test ./... -coverprofile cover.out -v
# Build curve-operator binary
curve-operator: manifests fmt vet
go build -o bin/curve-operator main.go
# Run against the configured Kubernetes cluster in ~/.kube/config
run: curve-operator
go run ./main.go
# Install CRDs into a cluster
install: manifests
kustomize build config/crd | kubectl apply -f -
# Uninstall CRDs from a cluster
uninstall: manifests
kustomize build config/crd | kubectl delete -f -
# Deploy controller in the configured Kubernetes cluster in ~/.kube/config
deploy: manifests
kubectl apply -f config/deploy
# Generate manifests e.g. CRD, RBAC etc.
manifests: generate
$(CONTROLLER_GEN) $(CRD_OPTIONS) rbac:roleName=curve-operator-role webhook paths="./..." output:crd:artifacts:config=config/crd/bases
cd config/manager && kustomize edit set image curve2operator/curve-operator=${IMG}:${TAG}
kustomize build config/default > config/deploy/manifests.yaml
# Run go fmt against code
fmt:
go fmt ./...
# Run go vet against code
vet:
go vet ./...
# Generate code
generate: controller-gen
$(CONTROLLER_GEN) object:headerFile="hack/boilerplate.go.txt" paths="./..."
# Build the docker image
docker-build: curve-operator manifests test
sudo docker build . -t ${IMG}:${TAG} --network host
# Push the docker image
docker-push:
sudo docker push ${IMG}:${TAG}
# find or download controller-gen
# download controller-gen if necessary
controller-gen:
ifeq (, $(shell which controller-gen))
@{ \
set -e ;\
CONTROLLER_GEN_TMP_DIR=$$(mktemp -d) ;\
cd $$CONTROLLER_GEN_TMP_DIR ;\
go mod init tmp ;\
go install sigs.k8s.io/controller-tools/cmd/[email protected] ;\
rm -rf $$CONTROLLER_GEN_TMP_DIR ;\
}
CONTROLLER_GEN=$(GOBIN)/controller-gen
else
CONTROLLER_GEN=$(shell which controller-gen)
endif
KUSTOMIZE = $(GOBIN)/kustomize
kustomize: ## Download kustomize locally if necessary.
$(call go-get-tool,$(KUSTOMIZE),sigs.k8s.io/kustomize/kustomize/[email protected])
# go-get-tool will 'go get' any package $2 and install it to $1.
PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))
define go-get-tool
@[ -f $(1) ] || { \
set -e ;\
TMP_DIR=$$(mktemp -d) ;\
cd $$TMP_DIR ;\
go mod init tmp ;\
echo "Downloading $(2)" ;\
go install $(2) ;\
rm -rf $$TMP_DIR ;\
}
endef