forked from spidernet-io/spiderpool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
333 lines (273 loc) · 13 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
#!/usr/bin/make -f
# Copyright 2022 Authors of spidernet-io
# SPDX-License-Identifier: Apache-2.0
include Makefile.defs test/Makefile.defs
all: build-bin install-bin
.PHONY: all build install
SUBDIRS := cmd/spiderpool-agent cmd/spiderpool-controller cmd/spiderpoolctl cmd/spiderpool
build-bin:
for i in $(SUBDIRS); do $(MAKE) $(SUBMAKEOPTS) -C $$i all; done
install-bin:
$(QUIET)$(INSTALL) -m 0755 -d $(DESTDIR_BIN)
for i in $(SUBDIRS); do $(MAKE) $(SUBMAKEOPTS) -C $$i install; done
install-bash-completion:
$(QUIET)$(INSTALL) -m 0755 -d $(DESTDIR_BIN)
for i in $(SUBDIRS); do $(MAKE) $(SUBMAKEOPTS) -C $$i install-bash-completion; done
# ============ build-load-image ============
install: build-image-to-tar load-image-to-kind apply-chart-to-kind
.PHONY: build-image-to-tar
build-image-to-tar:
@echo "Build Image with tag: $(GIT_COMMIT_VERSION)"
@for i in $(IMAGES); do \
docker buildx build --build-arg RACE=1 --build-arg GIT_COMMIT_VERSION=$(GIT_COMMIT_VERSION) --build-arg GIT_COMMIT_TIME=$(GIT_COMMIT_TIME) --build-arg VERSION=$(GIT_COMMIT_VERSION) --file $(ROOT_DIR)/images/"$${i##*/}"/Dockerfile --output type=tar,dest=$(DOWNLOAD_DIR)/"$${i##*/}"-race.tar --tag $$i-ci:$(GIT_COMMIT_VERSION)-race . ; \
echo "$${i##*/} image-tar build success, path: $(DOWNLOAD_DIR)/$${i##*/}-race.tar" ; \
done
.PHONY: load-image-to-kind
load-image-to-kind:
@echo "Load Image to kind..."
@for i in $(IMAGES); do \
cat $(DOWNLOAD_DIR)/"$${i##*/}"-race.tar | docker import - $$i-ci:$(GIT_COMMIT_VERSION)-race; \
kind load docker-image $$i-ci:$(GIT_COMMIT_VERSION)-race --name $(E2E_CLUSTER_NAME); \
done;
#=============apply-chart=================#
.PHONY: apply-chart-to-kind
apply-chart-to-kind:
helm install $(RELEASE_NAME) charts/spiderpool \
--set spiderpoolAgent.image.repository=$(REGISTER)/$(GIT_REPO)/spiderpool-agent-ci \
--set spiderpoolAgent.image.tag=$(GIT_COMMIT_VERSION)-race \
--set spiderpoolController.image.repository=$(REGISTER)/$(GIT_REPO)/spiderpool-controller-ci \
--set spiderpoolController.image.tag=$(GIT_COMMIT_VERSION)-race --kubeconfig $(E2E_KUBECONFIG)
.PHONY: lint
lint-golang:
@$(ECHO_CHECK) contrib/scripts/check-go-fmt.sh
$(QUIET) contrib/scripts/check-go-fmt.sh
@$(ECHO_CHECK) contrib/scripts/lock-check.sh
$(QUIET) contrib/scripts/lock-check.sh
@$(ECHO_CHECK) vetting all GOFILES...
$(QUIET) $(GO_VET) \
./cmd/... \
./pkg/... \
./test/... \
./contrib/...
@$(ECHO_CHECK) golangci-lint
$(QUIET) golangci-lint run
.PHONY: lint-markdown-format
lint-markdown-format:
@$(CONTAINER_ENGINE) container run --rm \
--entrypoint sh -v $(ROOT_DIR):/workdir ghcr.io/igorshubovych/markdownlint-cli:latest \
-c '/usr/local/bin/markdownlint -c /workdir/.github/markdownlint.yaml -p /workdir/.github/markdownlintignore /workdir/' ; \
if (($$?==0)) ; then echo "congratulations ,all pass" ; else echo "error, pealse refer <https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md> " ; fi
.PHONY: fix-markdown-format
fix-markdown-format:
@$(CONTAINER_ENGINE) container run --rm \
--entrypoint sh -v $(ROOT_DIR):/workdir ghcr.io/igorshubovych/markdownlint-cli:latest \
-c '/usr/local/bin/markdownlint -f -c /workdir/.github/markdownlint.yaml -p /workdir/.github/markdownlintignore /workdir/'
.PHONY: lint-markdown-spell
lint-markdown-spell:
if which mdspell &>/dev/null ; then \
mdspell -r --en-us --ignore-numbers --target-relative .github/.spelling --ignore-acronyms '**/*.md' '!vendor/**/*.md' ; \
else \
$(CONTAINER_ENGINE) container run --rm \
--entrypoint bash -v $(ROOT_DIR):/workdir weizhoulan/spellcheck:latest \
-c "cd /workdir ; mdspell -r --en-us --ignore-numbers --target-relative .github/.spelling --ignore-acronyms '**/*.md' '!vendor/**/*.md' " ; \
fi
.PHONY: lint-markdown-spell-colour
lint-markdown-spell-colour:
if which mdspell &>/dev/null ; then \
mdspell -r --en-us --ignore-numbers --target-relative .github/.spelling --ignore-acronyms '**/*.md' '!vendor/**/*.md' ; \
else \
$(CONTAINER_ENGINE) container run --rm -it \
--entrypoint bash -v $(ROOT_DIR):/workdir weizhoulan/spellcheck:latest \
-c "cd /workdir ; mdspell -r --en-us --ignore-numbers --target-relative .github/.spelling --ignore-acronyms '**/*.md' '!vendor/**/*.md' " ; \
fi
.PHONY: lint-yaml
lint-yaml:
@$(CONTAINER_ENGINE) container run --rm \
--entrypoint sh -v $(ROOT_DIR):/data cytopia/yamllint \
-c '/usr/bin/yamllint -c /data/.github/yamllint-conf.yml /data' ; \
if (($$?==0)) ; then echo "congratulations ,all pass" ; else echo "error, pealse refer <https://yamllint.readthedocs.io/en/stable/rules.html> " ; fi
.PHONY: lint-openapi
lint-openapi:
@$(CONTAINER_ENGINE) container run --rm \
-v $(ROOT_DIR):/spec redocly/openapi-cli lint api/v1/agent/openapi.yaml
@$(CONTAINER_ENGINE) container run --rm \
-v $(ROOT_DIR):/spec redocly/openapi-cli lint api/v1/controller/openapi.yaml
.PHONY: lint-code-spell
lint-code-spell:
$(QUIET) if ! which codespell &> /dev/null ; then \
echo "try to install codespell" ; \
if ! pip3 install codespell ; then \
echo "error, miss tool codespell, install it: pip3 install codespell" ; \
exit 1 ; \
fi \
fi ;\
codespell --config .github/codespell-config
.PHONY: fix-code-spell
fix-code-spell:
$(QUIET) if ! which codespell &> /dev/null ; then \
echo "try to install codespell" ; \
if ! pip3 install codespell ; then \
echo "error, miss tool codespell, install it: pip3 install codespell" ; \
exit 1 ;\
fi \
fi; \
codespell --config .github/codespell-config --write-changes
.PHONY: manifests
manifests:
@echo "Generate WebhookConfiguration, ClusterRole and CustomResourceDefinition objects."
@$(QUIET) tools/k8s-controller-gen/update-controller-gen.sh manifests
.PHONY: generate-k8s-api
generate-k8s-api:
@echo "Generate code containing DeepCopy, DeepCopyInto, and DeepCopyObject method implementations."
@$(QUIET) tools/k8s-controller-gen/update-controller-gen.sh deepcopy
.PHONY: manifests-verify
manifests-verify:
@echo "Verify WebhookConfiguration, ClusterRole and CustomResourceDefinition objects."
@$(QUIET) tools/k8s-controller-gen/update-controller-gen.sh verify
.PHONY: gofmt
gofmt: ## Run gofmt on Go source files in the repository.
$(QUIET)for pkg in $(GOFILES); do $(GO) fmt $$pkg; done
.PHONY: dev-doctor
dev-doctor:
@ $(GO) version 2>/dev/null || ( echo "go not found, see https://golang.org/doc/install" ; false )
@ JUST_CLI_CHECK=true test/scripts/install-tools.sh
@ echo "all tools ready"
#============ tools ====================
.PHONY: update-authors
update-authors: ## Update AUTHORS file for Cilium repository.
@echo "Updating AUTHORS file..."
@echo "The following people, in alphabetical order, have either authored or signed" > AUTHORS
@echo "off on commits in the Cilium repository:" >> AUTHORS
@echo "" >> AUTHORS
@contrib/authorgen/authorgen.sh >> AUTHORS
.PHONY: licenses-all
licenses-all: ## Generate file with all the License from dependencies.
@$(GO) run ./contrib/licensegen > LICENSE.all || ( rm -f LICENSE.all ; false )
.PHONY: licenses-check
licenses-check:
@$(ECHO_CHECK) tools/scripts/check-miss-license.sh
$(QUIET) tools/scripts/check-miss-license.sh
.PHONY: update-go-version
update-go-version: ## Update Go version for all the components
@echo "GO_MAJOR_AND_MINOR_VERSION=${GO_MAJOR_AND_MINOR_VERSION}"
@echo "GO_IMAGE_VERSION=${GO_IMAGE_VERSION}"
# ===== Update Go version for GitHub workflow
$(QUIET) for fl in $(shell find .github/workflows -name "*.yaml" -print) ; do \
sed -i 's/go-version: .*/go-version: ${GO_IMAGE_VERSION}/g' $$fl ; \
done
@echo "Updated go version in GitHub Actions to $(GO_IMAGE_VERSION)"
# ======= Update Go version in main.go.
$(QUIET) for fl in $(shell find . -name main.go -not -path "./vendor/*" -print); do \
sed -i \
-e 's|^//go:build go.*|//go:build go${GO_MAJOR_AND_MINOR_VERSION}|g' \
-e 's|^// +build go.*|// +build go${GO_MAJOR_AND_MINOR_VERSION}|g' \
$$fl ; \
done
ifeq (${shell [ -f .travis.yml ] && echo done},done)
# ====== Update Go version in Travis CI config.
$(QUIET) sed -i 's/go: ".*/go: "$(GO_VERSION)"/g' .travis.yml
@echo "Updated go version in .travis.yml to $(GO_VERSION)"
endif
ifeq (${shell [ -d ./test ] && echo done},done)
# ======= Update Go version in test scripts.
@echo "Updated go version in test scripts to $(GO_VERSION)"
endif
# ===== Update Go version in Dockerfiles.
$(QUIET) $(MAKE) -C images update-golang-image
@echo "Updated go version in image Dockerfiles to $(GO_IMAGE_VERSION)"
.PHONY: openapi-validate-spec
openapi-validate-spec: ## validate the given spec, like 'json/yaml'
$(QUIET) tools/scripts/swag.sh validate $(CURDIR)/api/v1/agent
$(QUIET) tools/scripts/swag.sh validate $(CURDIR)/api/v1/controller
.PHONY: openapi-code-gen
openapi-code-gen: openapi-validate-spec clean-openapi-code ## generate openapi source codes with the given spec.
$(QUIET) tools/scripts/swag.sh generate $(CURDIR)/api/v1/agent
$(QUIET) tools/scripts/swag.sh generate $(CURDIR)/api/v1/controller
.PHONY: openapi-verify
openapi-verify: openapi-validate-spec ## verify the current generated openapi source codes are not out of date with the given spec.
$(QUIET) tools/scripts/swag.sh verify $(CURDIR)/api/v1/agent
$(QUIET) tools/scripts/swag.sh verify $(CURDIR)/api/v1/controller
.PHONY: clean-openapi-code
clean-openapi-code: ## clean up generated openapi source codes
$(QUIET) tools/scripts/swag.sh clean $(CURDIR)/api/v1/agent
$(QUIET) tools/scripts/swag.sh clean $(CURDIR)/api/v1/controller
.PHONY: clean-openapi-tmp
clean-openapi-tmp: ## clean up '_openapi_tmp' dir
$(QUIET) rm -rf $(CURDIR)/_openapi_tmp
.PHONY: openapi-ui
openapi-ui: ## set up swagger-ui in local.
@$(CONTAINER_ENGINE) container run --rm -it -p 8080:8080 \
-e SWAGGER_JSON=/foo/agent-swagger.yml \
-v $(CURDIR)/api/v1/agent/openapi.yaml:/foo/agent-swagger.yml \
-v $(CURDIR)/api/v1/controller/openapi.yaml:/foo/controller-swagger.yml \
swaggerapi/swagger-ui
# ==========================
# should label for each test file
.PHONY: check_test_label
check_test_label:
@ALL_TEST_FILE=` find ./ -name "*_test.go" -not -path "./vendor/*" ` ; FAIL="false" ; \
for ITEM in $$ALL_TEST_FILE ; do \
[[ "$$ITEM" == *_suite_test.go ]] && continue ; \
! grep 'Label(' $${ITEM} &>/dev/null && FAIL="true" && echo "error, miss Label in $${ITEM}" ; \
done ; \
[ "$$FAIL" == "true" ] && echo "error, label check fail" && exit 1 ; \
echo "each test.go is labeled right"
.PHONY: unitest-tests
unitest-tests: check_test_label
@echo "run unitest-tests"
$(QUIET) $(ROOT_DIR)/tools/scripts/ginkgo.sh \
--cover --coverprofile=./coverage.out --covermode set \
--json-report unitestreport.json \
-randomize-suites -randomize-all --keep-going --timeout=1h -p --slow-spec-threshold=120s \
-vv -r $(ROOT_DIR)/pkg $(ROOT_DIR)/cmd
$(QUIET) go tool cover -html=./coverage.out -o coverage-all.html
.PHONY: e2e
e2e:
$(QUIET) TMP=` date +%m%d%H%M%S ` ; E2E_CLUSTER_NAME="spiderpool$${TMP}" ; \
echo "begin e2e with cluster $${E2E_CLUSTER_NAME}" ; \
make -C test e2e -e E2E_CLUSTER_NAME=$${E2E_CLUSTER_NAME}
.PHONY: e2e_init
e2e_init:
$(QUIET) make -C test kind-init
.PHONY: e2e_test
e2e_test:
$(QUIET) make -C test e2e-test
.PHONY: preview_doc
preview_doc: PROJECT_DOC_DIR := ${ROOT_DIR}/docs
preview_doc:
-docker stop doc_previewer &>/dev/null
-docker rm doc_previewer &>/dev/null
@echo "set up preview http server "
@echo "you can visit the website on browser with url 'http://127.0.0.1:8000' "
[ -f "docs/mkdocs.yml" ] || { echo "error, miss docs/mkdocs.yml "; exit 1 ; }
docker run --rm -p 8000:8000 --name doc_previewer -v $(PROJECT_DOC_DIR):/host/docs \
--entrypoint sh \
--stop-timeout 3 \
--stop-signal "SIGKILL" \
squidfunk/mkdocs-material -c "cd /host ; cp docs/mkdocs.yml ./ ; mkdocs serve -a 0.0.0.0:8000"
#sleep 10 ; if curl 127.0.0.1:8000 &>/dev/null ; then echo "succeeded to set up preview server" ; else echo "error, failed to set up preview server" ; docker stop doc_previewer ; exit 1 ; fi
.PHONY: build_doc
build_doc: PROJECT_DOC_DIR := ${ROOT_DIR}/docs
build_doc: OUTPUT_TAR := site.tar.gz
build_doc:
-docker stop doc_builder &>/dev/null
-docker rm doc_builder &>/dev/null
[ -f "docs/mkdocs.yml" ] || { echo "error, miss docs/mkdocs.yml "; exit 1 ; }
-@ rm -f ./docs/$(OUTPUT_TAR)
@echo "build doc html " ; \
docker run --rm --name doc_builder \
-v ${PROJECT_DOC_DIR}:/host/docs \
--entrypoint sh \
squidfunk/mkdocs-material -c "cd /host ; cp ./docs/mkdocs.yml ./ ; mkdocs build ; cd site ; tar -czvf site.tar.gz * ; mv ${OUTPUT_TAR} ../docs/"
@ [ -f "$(PROJECT_DOC_DIR)/$(OUTPUT_TAR)" ] || { echo "failed to build site to $(PROJECT_DOC_DIR)/$(OUTPUT_TAR) " ; exit 1 ; }
@ echo "succeeded to build site to $(PROJECT_DOC_DIR)/$(OUTPUT_TAR) "
# ==========================
.PHONY: clean_e2e
clean_e2e:
-$(QUIET) make -C test clean
-$(QUIET) rm -f e2ereport.json
.PHONY: clean
clean: clean_e2e
-$(QUIET) for i in $(SUBDIRS); do $(MAKE) $(SUBMAKEOPTS) -C $$i clean; done
-$(QUIET) rm -rf $(DESTDIR_BIN)
-$(QUIET) rm -rf $(DESTDIR_BASH_COMPLETION)