forked from cilium/cilium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
308 lines (247 loc) · 10.6 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
include Makefile.defs
include daemon/bpf.sha
SUBDIRS = proxylib envoy plugins bpf cilium daemon monitor cilium-health bugtool tools
GOFILES ?= $(subst _$(ROOT_DIR)/,,$(shell $(GO) list ./... | grep -v -e /vendor/ -e /contrib/ -e envoy/envoy))
TESTPKGS ?= $(subst _$(ROOT_DIR)/,,$(shell $(GO) list ./... | grep -v -e /api/v1 -e /vendor/ -e /contrib/ -e envoy/envoy -e test))
GOLANGVERSION = $(shell $(GO) version 2>/dev/null | grep -Eo '(go[0-9].[0-9])')
GOLANG_SRCFILES=$(shell for pkg in $(subst github.com/cilium/cilium/,,$(GOFILES)); do find $$pkg -name *.go -print; done | grep -v vendor)
BPF_FILES ?= $(shell git ls-files ../bpf/ | tr "\n" ' ')
BPF_SRCFILES=$(subst ../,,$(BPF_FILES))
DOCKER=$(QUIET)docker
SWAGGER_VERSION = 0.12.0
SWAGGER = $(DOCKER) run --rm -v $(CURDIR):$(CURDIR) -w $(CURDIR) -e GOPATH=$(GOPATH) --entrypoint swagger quay.io/goswagger/swagger:$(SWAGGER_VERSION)
COVERPKG ?= ./...
GOTEST_BASE = -test.v -check.vv -timeout 360s
GOTEST_PRIV_OPTS = $(GOTEST_BASE) -tags=privileged_tests
GOTEST_COVER_OPTS = -coverprofile=coverage.out -covermode=count -coverpkg $(COVERPKG)
UTC_DATE=$(shell date -u "+%Y-%m-%d")
SKIP_DOCS ?= false
all: precheck build postcheck
@echo "Build finished."
build: $(SUBDIRS)
$(SUBDIRS): force
@ $(MAKE) -C $@ all
jenkins-precheck:
docker-compose -f test/docker-compose.yml -p $$JOB_BASE_NAME-$$BUILD_NUMBER run --rm precheck
# invoked from ginkgo Jenkinsfile
tests-ginkgo: force
# Make the bindata to run the unittest
$(MAKE) -C daemon go-bindata
docker-compose -f test/docker-compose.yml -p $$JOB_BASE_NAME-$$BUILD_NUMBER run --rm test
# Remove the networks
docker-compose -f test/docker-compose.yml -p $$JOB_BASE_NAME-$$BUILD_NUMBER down
clean-ginkgo-tests:
docker-compose -f test/docker-compose.yml -p $$JOB_BASE_NAME-$$BUILD_NUMBER down
docker-compose -f test/docker-compose.yml -p $$JOB_BASE_NAME-$$BUILD_NUMBER rm
TEST_LDFLAGS=-ldflags "-X github.com/cilium/cilium/pkg/kvstore.consulDummyAddress=consul:8500 -X github.com/cilium/cilium/pkg/kvstore.etcdDummyAddress=http://etcd:4002"
# invoked from ginkgo compose file after starting kvstore backends
tests-ginkgo-real:
$(QUIET)$(foreach pkg,$(TESTPKGS),\
$(GO) test $(TEST_LDFLAGS) $(pkg) $(GOTEST_BASE) || exit 1;)
$(QUIET)$(foreach pkg,$(TESTPKGS),\
$(GO) test $(TEST_LDFLAGS) $(pkg) $(GOTEST_PRIV_OPTS) || exit 1;)
@rmdir ./daemon/1 ./daemon/1_backup 2> /dev/null || true
tests-envoy: proxylib
@ $(MAKE) -C envoy tests
start-kvstores:
@echo Starting key-value store containers...
-$(DOCKER) rm -f "cilium-etcd-test-container" 2> /dev/null
$(DOCKER) run -d \
--name "cilium-etcd-test-container" \
-p 4002:4001 \
quay.io/coreos/etcd:v3.2.17 \
etcd -name etcd0 \
-advertise-client-urls http://0.0.0.0:4001 \
-listen-client-urls http://0.0.0.0:4001 \
-listen-peer-urls http://0.0.0.0:2380 \
-initial-cluster-token etcd-cluster-1 \
-initial-cluster-state new
-$(DOCKER) rm -f "cilium-consul-test-container" 2> /dev/null
$(DOCKER) run -d \
--name "cilium-consul-test-container" \
-p 8501:8500 \
-e 'CONSUL_LOCAL_CONFIG={"skip_leave_on_interrupt": true, "disable_update_check": true}' \
consul:1.1.0 \
agent -client=0.0.0.0 -server -bootstrap-expect 1
tests: force
$(MAKE) unit-tests tests-envoy
unit-tests: start-kvstores
$(QUIET) $(MAKE) -C daemon/ check-bindata
$(QUIET) echo "mode: count" > coverage-all.out
$(QUIET) echo "mode: count" > coverage.out
$(QUIET)$(foreach pkg,$(TESTPKGS),\
$(GO) test $(pkg) $(GOTEST_BASE) $(GOTEST_COVER_OPTS) || exit 1; \
tail -n +2 coverage.out >> coverage-all.out;)
$(QUIET)$(foreach pkg,$(TESTPKGS),\
sudo $(GO) test $(pkg) $(GOTEST_PRIV_OPTS) $(GOTEST_COVER_OPTS) || exit 1; \
tail -n +2 coverage.out >> coverage-all.out;)
$(GO) tool cover -html=coverage-all.out -o=coverage-all.html
$(QUIET) rm coverage.out
@rmdir ./daemon/1 ./daemon/1_backup 2> /dev/null || true
$(DOCKER) rm -f "cilium-etcd-test-container"
$(DOCKER) rm -f "cilium-consul-test-container"
clean-tags:
@$(ECHO_CLEAN) tags
@-rm -f cscope.out cscope.in.out cscope.po.out cscope.files tags
tags: $(GOLANG_SRCFILES) $(BPF_SRCFILES)
ctags $(GOLANG_SRCFILES) $(BPF_SRCFILES)
@ echo $(GOLANG_SRCFILES) $(BPF_SRCFILES) | sed 's/ /\n/g' | sort > cscope.files
cscope -R -b -q
clean-container:
-for i in $(SUBDIRS); do $(MAKE) -C $$i clean; done
clean: clean-container
-$(MAKE) -C ./contrib/packaging/deb clean
-$(MAKE) -C ./contrib/packaging/rpm clean
-rm -f GIT_VERSION
install:
$(INSTALL) -m 0755 -d $(DESTDIR)$(BINDIR)
for i in $(SUBDIRS); do $(MAKE) -C $$i install; done
# Workaround for not having git in the build environment
GIT_VERSION: .git
echo "$(GIT_VERSION)" >GIT_VERSION
envoy/SOURCE_VERSION: .git
git rev-parse HEAD >envoy/SOURCE_VERSION
docker-image: clean GIT_VERSION envoy/SOURCE_VERSION
$(QUIET)grep -v -E "(SOURCE|GIT)_VERSION" .gitignore >.dockerignore
$(QUIET)echo ".*" >>.dockerignore # .git pruned out
$(QUIET)echo "Documentation" >>.dockerignore # Not needed
@$(ECHO_GEN) docker-image
$(DOCKER) build --build-arg LOCKDEBUG=${LOCKDEBUG} --build-arg V=${V} -t "cilium/cilium:$(DOCKER_IMAGE_TAG)" .
$(QUIET)echo "Push like this when ready:"
$(QUIET)echo "docker push cilium/cilium:$(DOCKER_IMAGE_TAG)"
docker-image-runtime:
cd contrib/packaging/docker && docker build -t "cilium/cilium-runtime:$(UTC_DATE)" -f Dockerfile.runtime .
docker-image-builder:
cd envoy && docker build -t "quay.io/cilium/cilium-builder:$(UTC_DATE)" .
build-deb:
$(MAKE) -C ./contrib/packaging/deb
build-rpm:
$(MAKE) -C ./contrib/packaging/rpm
runtime-tests:
$(MAKE) -C tests runtime-tests
k8s-tests:
$(MAKE) -C tests k8s-tests
generate-api: api/v1/openapi.yaml
@$(ECHO_GEN)api/v1/openapi.yaml
-$(SWAGGER) generate server -s server -a restapi \
-t api/v1 -f api/v1/openapi.yaml --default-scheme=unix -C api/v1/cilium-server.yml
-$(SWAGGER) generate client -a restapi \
-t api/v1 -f api/v1/openapi.yaml
generate-health-api: api/v1/health/openapi.yaml
@$(ECHO_GEN)api/v1/health/openapi.yaml
-$(SWAGGER) generate server -s server -a restapi \
-t api/v1 -t api/v1/health/ -f api/v1/health/openapi.yaml
-$(SWAGGER) generate client -a restapi \
-t api/v1 -t api/v1/health/ -f api/v1/health/openapi.yaml
generate-k8s-api:
cd "./vendor/k8s.io/code-generator" && \
./generate-groups.sh all \
github.com/cilium/cilium/pkg/k8s/client \
github.com/cilium/cilium/pkg/k8s/apis \
"cilium.io:v2" \
--go-header-file "$(PWD)/hack/custom-boilerplate.go.txt"
cd "./vendor/k8s.io/code-generator" && \
./generate-groups.sh deepcopy \
github.com/cilium/cilium/pkg/k8s/client \
github.com/cilium/cilium/pkg \
"policy:api" \
--go-header-file "$(PWD)/hack/custom-boilerplate.go.txt"
cd "./vendor/k8s.io/code-generator" && \
./generate-groups.sh deepcopy \
github.com/cilium/cilium/pkg/k8s/client \
github.com/cilium/cilium \
"pkg:labels" \
--go-header-file "$(PWD)/hack/custom-boilerplate.go.txt"
vps:
VBoxManage list runningvms
reload:
sudo systemctl stop cilium cilium-docker
sudo $(MAKE) install
sudo systemctl start cilium cilium-docker
sleep 6
cilium status
release:
$(eval TAG_VERSION := $(shell git tag | grep v$(VERSION) > /dev/null; echo $$?))
$(eval BRANCH := $(shell git rev-parse --abbrev-ref HEAD))
$(info Checking if tag $(VERSION) is created '$(TAG_VERSION)' $(BRANCH))
@if [ "$(TAG_VERSION)" -eq "0" ];then { echo Git tag v$(VERSION) is already created; exit 1; } fi
$(MAKE) -C ./contrib/packaging/deb release
git commit -m "Version $(VERSION)"
git tag v$(VERSION)
git archive --format tar $(BRANCH) | gzip > ../cilium_$(VERSION).orig.tar.gz
gofmt:
for pkg in $(GOFILES); do $(GO) fmt $$pkg; done
govet:
@$(ECHO_CHECK) vetting all GOFILES...
$(GO) tool vet api pkg test $(SUBDIRS)
ineffassign:
@$(ECHO_CHECK) ineffassign
$(QUIET) ineffassign .
logging-subsys-field:
@$(ECHO_CHECK) contrib/scripts/check-logging-subsys-field.sh
$(QUIET) contrib/scripts/check-logging-subsys-field.sh
precheck: govet ineffassign logging-subsys-field
@$(ECHO_CHECK) contrib/scripts/check-fmt.sh
$(QUIET) contrib/scripts/check-fmt.sh
@$(ECHO_CHECK) contrib/scripts/check-log-newlines.sh
$(QUIET) contrib/scripts/check-log-newlines.sh
@$(ECHO_CHECK) contrib/scripts/check-missing-tags-in-tests.sh
$(QUIET) contrib/scripts/check-missing-tags-in-tests.sh
pprof-help:
@echo "Available pprof targets:"
@echo " pprof-heap"
@echo " pprof-profile"
@echo " pprof-block"
@echo " pprof-trace-5s"
@echo " pprof-mutex"
pprof-heap:
$(GO) tool pprof http://localhost:6060/debug/pprof/heap
pprof-profile:
$(GO) tool pprof http://localhost:6060/debug/pprof/profile
pprof-block:
$(GO) tool pprof http://localhost:6060/debug/pprof/block
pprof-trace-5s:
curl http://localhost:6060/debug/pprof/trace?seconds=5
pprof-mutex:
$(GO) tool pprof http://localhost:6060/debug/pprof/mutex
update-authors:
@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/scripts/extract_authors.sh >> AUTHORS
@cat .authors.aux >> AUTHORS
docs-container:
$(QUIET)grep -v -E "(SOURCE|GIT)_VERSION" .gitignore >.dockerignore
$(QUIET)echo ".*" >>.dockerignore # .git pruned out
$(QUIET)cp -r ./api ./Documentation/_api
$(DOCKER) image build -t cilium/docs-builder -f Documentation/Dockerfile ./Documentation; \
(ret=$$?; rm -r ./Documentation/_api && exit $$ret)
render-docs: docs-container
-$(DOCKER) container rm -f docs-cilium >/dev/null 2>&1 || true
$(DOCKER) container run --rm -ti -u $$(id -u):$$(id -g $(USER)) -v $$(pwd):/srv/ cilium/docs-builder /bin/bash -c 'make html'
$(DOCKER) container run --rm -dit --name docs-cilium -p 8080:80 -v $$(pwd)/Documentation/_build/html/:/usr/local/apache2/htdocs/ httpd:2.4
@echo "$$(tput setaf 2)Running at http://localhost:8080$$(tput sgr0)"
test-docs: docs-container
-$(DOCKER) container rm -f docs-cilium >/dev/null
$(DOCKER) container run --rm -v $$(pwd):/srv/ cilium/docs-builder /bin/bash -c 'make html'
manpages:
-rm -r man
mkdir -p man
cilium cmdman -d man
install-manpages:
cp man/* /usr/local/share/man/man1/
mandb
# Strip "tabs assets" errors from the dummy target, but fail on target failure.
check-docs:
$(QUIET)($(MAKE) -C Documentation/ dummy SPHINXOPTS="$(SPHINXOPTS)" 2>&1 && touch $@.ok) \
| grep -v "tabs assets"
@rm $@.ok 2>/dev/null
postcheck: build
@$(ECHO_CHECK) contrib/scripts/check-cmdref.sh
$(QUIET) MAKE=$(MAKE) contrib/scripts/check-cmdref.sh
@$(ECHO_CHECK) contrib/scripts/lock-check.sh
$(QUIET) contrib/scripts/lock-check.sh
@$(SKIP_DOCS) || $(MAKE) check-docs
.PHONY: force generate-api generate-health-api
force :;