-
Notifications
You must be signed in to change notification settings - Fork 9
/
Makefile
165 lines (128 loc) · 5.46 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# Current Operator version
VERSION ?= v0.6.4
REGISTRY ?= tmaxcloudck
# Image URL to use all building/pushing image targets
IMG_CONTROLLER ?= $(REGISTRY)/cicd-operator:$(VERSION)
IMG_BLOCKER ?= $(REGISTRY)/cicd-blocker:$(VERSION)
IMG_WEBHOOK ?= $(REGISTRY)/cicd-webhook:$(VERSION)
IMG_APISERVER ?= $(REGISTRY)/cicd-api-server:$(VERSION)
# 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
all: controller cicdctl
# Run tests
test: test-crd test-gen test-verify test-unit test-lint test-coverage
# Build controller binary
controller: generate fmt vet
go build -o bin/controller cmd/controller/main.go
# Build cicdctl binary
cicdctl:
go build -o bin/cicdctl cmd/cicdctl/main.go
# Run against the configured Kubernetes cluster in ~/.kube/config
run: generate fmt vet manifests
go run ./main.go $(RUN_ARGS)
run-cicdctl:
go run cmd/cicdctl/main.go $(RUN_ARGS)
# Generate manifests e.g. CRD, RBAC etc.
manifests: controller-gen
$(CONTROLLER_GEN) crd rbac:roleName=cicd-manager-role webhook paths="./..." output:crd:artifacts:config=config/crd
./hack/release-manifest.sh $(VERSION) $(REGISTRY)
# 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
.PHONY: docker-build
docker-build: docker-build-controller docker-build-blocker docker-build-webhook docker-build-apiserver
docker-build-controller:
docker build . -f build/controller/Dockerfile -t ${IMG_CONTROLLER}
docker-build-blocker:
docker build . -f build/blocker/Dockerfile -t ${IMG_BLOCKER}
docker-build-webhook:
docker build . -f build/webhook/Dockerfile -t ${IMG_WEBHOOK}
docker-build-apiserver:
docker build . -f build/apiserver/Dockerfile -t ${IMG_APISERVER}
# Push the docker image
.PHONY: docker-push
docker-push: docker-push-controller docker-push-blocker docker-push-webhook docker-push-apiserver
docker-push-controller:
docker push ${IMG_CONTROLLER}
docker-push-blocker:
docker push ${IMG_BLOCKER}
docker-push-webhook:
docker push ${IMG_WEBHOOK}
docker-push-apiserver:
docker push ${IMG_APISERVER}
# 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 get 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
# Custom targets for CI/CD operator
.PHONY: test-gen test-crd test-verify test-lint test-unit
# Test if zz_generated.deepcopy.go file is generated
test-gen: save-sha-gen generate compare-sha-gen
# Test if crd yaml files are generated
test-crd: save-sha-crd manifests compare-sha-crd
# Verify if go.sum is valid
test-verify: save-sha-mod verify compare-sha-mod
# Test code lint
test-lint:
golangci-lint run ./... -v
# Unit test
test-unit:
go test -v ./...
# Check coverage
test-coverage:
go test -v -coverpkg=./... -coverprofile=profile.cov.tmp ./...
cat profile.cov.tmp | grep -v "_generated.deepcopy.go" > profile.cov
go tool cover -func profile.cov
rm -f profile.cov profile.cov.tmp
save-sha-gen:
$(eval GENSHA=$(shell sha512sum api/v1/zz_generated.deepcopy.go))
compare-sha-gen:
$(eval GENSHA_AFTER=$(shell sha512sum api/v1/zz_generated.deepcopy.go))
@if [ "${GENSHA_AFTER}" = "${GENSHA}" ]; then echo "zz_generated.deepcopy.go is not changed"; else echo "zz_generated.deepcopy.go file is changed"; exit 1; fi
save-sha-crd:
$(eval CRDSHA1=$(shell sha512sum config/crd/cicd.tmax.io_integrationconfigs.yaml))
$(eval CRDSHA2=$(shell sha512sum config/crd/cicd.tmax.io_integrationjobs.yaml))
$(eval CRDSHA3=$(shell sha512sum config/crd/cicd.tmax.io_approvals.yaml))
$(eval CRDSHA4=$(shell sha512sum config/release.yaml))
compare-sha-crd:
$(eval CRDSHA1_AFTER=$(shell sha512sum config/crd/cicd.tmax.io_integrationconfigs.yaml))
$(eval CRDSHA2_AFTER=$(shell sha512sum config/crd/cicd.tmax.io_integrationjobs.yaml))
$(eval CRDSHA3_AFTER=$(shell sha512sum config/crd/cicd.tmax.io_approvals.yaml))
$(eval CRDSHA4_AFTER=$(shell sha512sum config/release.yaml))
@if [ "${CRDSHA1_AFTER}" = "${CRDSHA1}" ]; then echo "cicd.tmax.io_integrationconfigs.yaml is not changed"; else echo "cicd.tmax.io_integrationconfigs.yaml file is changed"; exit 1; fi
@if [ "${CRDSHA2_AFTER}" = "${CRDSHA2}" ]; then echo "cicd.tmax.io_integrationjobs.yaml is not changed"; else echo "cicd.tmax.io_integrationjobs.yaml file is changed"; exit 1; fi
@if [ "${CRDSHA3_AFTER}" = "${CRDSHA3}" ]; then echo "cicd.tmax.io_approvals.yaml is not changed"; else echo "cicd.tmax.io_approvals.yaml file is changed"; exit 1; fi
@if [ "${CRDSHA4_AFTER}" = "${CRDSHA4}" ]; then echo "config/release.yaml is not changed"; else echo "config/release.yaml file is changed"; exit 1; fi
save-sha-mod:
$(eval MODSHA=$(shell sha512sum go.mod))
$(eval SUMSHA=$(shell sha512sum go.sum))
verify:
go mod verify
compare-sha-mod:
$(eval MODSHA_AFTER=$(shell sha512sum go.mod))
$(eval SUMSHA_AFTER=$(shell sha512sum go.sum))
@if [ "${MODSHA_AFTER}" = "${MODSHA}" ]; then echo "go.mod is not changed"; else echo "go.mod file is changed"; exit 1; fi
@if [ "${SUMSHA_AFTER}" = "${SUMSHA}" ]; then echo "go.sum is not changed"; else echo "go.sum file is changed"; exit 1; fi