forked from cilium/cilium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
281 lines (226 loc) · 9.48 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
include Makefile.defs
include daemon/bpf.sha
SUBDIRS = envoy plugins bpf cilium daemon monitor cilium-health bugtool
GOFILES ?= $(shell go list ./... | grep -v /vendor/ | grep -v /contrib/ | grep -v envoy/envoy)
TESTPKGS ?= $(shell go list ./... | grep -v /vendor/ | grep -v /contrib/ | grep -v envoy/envoy | grep -v 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))
SWAGGER_VERSION = 0.12.0
SWAGGER = $(QUIET)docker run --rm -v $(CURDIR):$(CURDIR) -w $(CURDIR) -e GOPATH=$(GOPATH) --entrypoint swagger quay.io/goswagger/swagger:$(SWAGGER_VERSION)
GOTEST_OPTS = -test.v -check.v
UTC_DATE=$(shell date -u "+%Y-%m-%d")
all: precheck build postcheck
@echo "Build finished."
build: $(SUBDIRS)
$(SUBDIRS): force
@ $(MAKE) -C $@ all
# 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=etcd:4002"
# invoked from ginkgo compose file after starting kvstore backends
tests-ginkgo-real:
echo "mode: count" > coverage-all.out
echo "mode: count" > coverage.out
$(foreach pkg,$(TESTPKGS),\
go test $(TEST_LDFLAGS) \
-timeout 360s -coverprofile=coverage.out -covermode=count $(pkg) $(GOTEST_OPTS) || exit 1;\
tail -n +2 coverage.out >> coverage-all.out;)
$(GO) tool cover -html=coverage-all.out -o=coverage-all.html
rm coverage-all.out
rm coverage.out
@rmdir ./daemon/1 ./daemon/1_backup 2> /dev/null || true
tests-envoy:
@ $(MAKE) -C envoy tests
start-kvstores:
@docker rm -f "cilium-etcd-test-container" 2> /dev/null || true
-docker run -d \
--name "cilium-etcd-test-container" \
-p 4002:4001 \
quay.io/coreos/etcd:v3.1.0 \
etcd -name etcd0 \
-advertise-client-urls http://0.0.0.0:4001 \
-listen-client-urls http://0.0.0.0:4001 \
-initial-cluster-token etcd-cluster-1 \
-initial-cluster-state new
@docker rm -f "cilium-consul-test-container" 2> /dev/null || true
-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:0.8.3 \
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
$(foreach pkg,$(TESTPKGS),\
$(QUIET) go test \
-timeout 360s -coverprofile=coverage.out -covermode=count $(pkg) $(GOTEST_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-all.out
$(QUIET) rm coverage.out
@rmdir ./daemon/1 ./daemon/1_backup 2> /dev/null || true
$(QUIET) docker rm -f "cilium-etcd-test-container"
$(QUIET) 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
grep -v -E "(SOURCE|GIT)_VERSION" .gitignore >.dockerignore
echo ".*" >>.dockerignore # .git pruned out
echo "Documentation" >>.dockerignore # Not needed
docker build --build-arg LOCKDEBUG=${LOCKDEBUG} -t "cilium/cilium:$(DOCKER_IMAGE_TAG)" .
@echo "Push like this when ready:"
@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 "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 "$(GOPATH)/src/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 "$(GOPATH)/src/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 "$(GOPATH)/src/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 $(SUBDIRS)
precheck: govet
@$(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
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:
grep -v -E "(SOURCE|GIT)_VERSION" .gitignore >.dockerignore
echo ".*" >>.dockerignore # .git pruned out
docker image build -t cilium/docs-builder -f Documentation/Dockerfile .
render-docs: docs-container
-docker container rm -f docs-cilium >/dev/null
docker container run -ti -u $$(id -u):$$(id -g $(USER)) -v $$(pwd):/srv/ cilium/docs-builder /bin/bash -c 'make html' && \
docker container run -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
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
-$(QUIET) $(MAKE) -C Documentation/ dummy SPHINXOPTS="-q" 2>&1 | grep -v "tabs assets"
.PHONY: force generate-api generate-health-api
force :;