forked from projectcalico/felix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
789 lines (681 loc) · 30.2 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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
# This Makefile builds Felix and releases it in various forms:
#
# Go install
# |
# +-------+ v
# | Felix | +---------------------+
# | Go | | calico/go-build |
# | code | +---------------------+
# +-------+ /
# \ /
# \ /
# go build
# |
# v
# +------------------+
# | bin/calico-felix |
# +------------------+
# /
# .-------'
# /
# /
# docker build
# |
# v
# +--------------+
# | calico/felix |
# +--------------+
#
###############################################################################
PACKAGE_NAME?=github.com/projectcalico/felix
GO_BUILD_VER?=v0.49
SEMAPHORE_PROJECT_ID?=$(SEMAPHORE_FELIX_PROJECT_ID)
SEMAPHORE_AUTO_PIN_UPDATE_PROJECT_IDS=$(SEMAPHORE_NODE_PROJECT_ID) $(SEMAPHORE_KUBE_CONTROLLER_PROJECT_ID)
###############################################################################
# Download and include Makefile.common
# Additions to EXTRA_DOCKER_ARGS need to happen before the include since
# that variable is evaluated when we declare DOCKER_RUN and siblings.
###############################################################################
MAKE_BRANCH?=$(GO_BUILD_VER)
MAKE_REPO?=https://raw.githubusercontent.com/projectcalico/go-build/$(MAKE_BRANCH)
Makefile.common: Makefile.common.$(MAKE_BRANCH)
cp "$<" "$@"
Makefile.common.$(MAKE_BRANCH):
# Clean up any files downloaded from other branches so they don't accumulate.
rm -f Makefile.common.*
curl --fail $(MAKE_REPO)/Makefile.common -o "$@"
# Build mounts for running in "local build" mode. This allows an easy build using local development code,
# assuming that there is a local checkout of libcalico in the same directory as this repo.
ifdef LOCAL_BUILD
PHONY: set-up-local-build
LOCAL_BUILD_DEP:=set-up-local-build
EXTRA_DOCKER_ARGS+=-v $(CURDIR)/../libcalico-go:/go/src/github.com/projectcalico/libcalico-go:rw \
-v $(CURDIR)/../typha:/go/src/github.com/projectcalico/typha:rw \
-v $(CURDIR)/../pod2daemon:/go/src/github.com/projectcalico/pod2daemon:rw
$(LOCAL_BUILD_DEP):
$(DOCKER_GO_BUILD) go mod edit -replace=github.com/projectcalico/libcalico-go=../libcalico-go \
-replace=github.com/projectcalico/typha=../typha \
-replace=github.com/projectcalico/pod2daemon=../pod2daemon
endif
include Makefile.common
###############################################################################
BUILD_IMAGE?=calico/felix
PUSH_IMAGES?=$(BUILD_IMAGE) quay.io/calico/felix
RELEASE_IMAGES?=
FV_ETCDIMAGE?=quay.io/coreos/etcd:$(ETCD_VERSION)-$(BUILDARCH)
FV_K8SIMAGE?=gcr.io/google_containers/hyperkube-$(BUILDARCH):$(K8S_VERSION)
FV_TYPHAIMAGE?=calico/typha:master-$(BUILDARCH)
FV_FELIXIMAGE?=$(BUILD_IMAGE)-test:latest-$(BUILDARCH)
# If building on amd64 omit the arch in the container name. Fixme!
ifeq ($(BUILDARCH),amd64)
FV_ETCDIMAGE=quay.io/coreos/etcd:$(ETCD_VERSION)
FV_K8SIMAGE=gcr.io/google_containers/hyperkube:$(K8S_VERSION)
FV_TYPHAIMAGE=calico/typha:master
endif
# Total number of batches to split the tests into. In CI we set this to say 5 batches,
# and run a single batch on each test VM.
FV_NUM_BATCHES?=1
# Space-delimited list of FV batches to run in parallel. Defaults to running all batches
# in parallel on this host. The CI system runs a subset of batches in each parallel job.
#
# To run multiple batches in parallel in order to speed up local runs (on a powerful
# developer machine), set FV_NUM_BATCHES to say 3, then this value will be automatically
# calculated. Note: the tests tend to flake more when run in parallel even though they
# were designed to be isolated; if you hit a failure, try running the tests sequentially
# (with FV_NUM_BATCHES=1) to check that it's not a flake.
FV_BATCHES_TO_RUN?=$(shell seq $(FV_NUM_BATCHES))
FV_SLOW_SPEC_THRESH=90
FV_RACE_DETECTOR_ENABLED?=true
# Linker flags for building Felix.
#
# We use -X to insert the version information into the placeholder variables
# in the buildinfo package.
#
# We use -B to insert a build ID note into the executable, without which, the
# RPM build tools complain.
LDFLAGS=-ldflags "\
-X $(PACKAGE_NAME)/buildinfo.GitVersion=$(GIT_DESCRIPTION) \
-X $(PACKAGE_NAME)/buildinfo.BuildDate=$(DATE) \
-X $(PACKAGE_NAME)/buildinfo.GitRevision=$(GIT_COMMIT) \
-B 0x$(BUILD_ID)"
# List of Go files that are generated by the build process. Builds should
# depend on these, clean removes them.
GENERATED_FILES=proto/felixbackend.pb.go bpf/asm/opcode_string.go
# All Felix go files.
SRC_FILES:=$(shell find . $(foreach dir,$(NON_FELIX_DIRS),-path ./$(dir) -prune -o) -type f -name '*.go' -print) $(GENERATED_FILES)
EXTRA_DOCKER_ARGS+=--init -v $(CURDIR)/../pod2daemon:/go/src/github.com/projectcalico/pod2daemon:rw
.PHONY: clean
clean:
rm -rf bin \
docker-image/bin \
dist \
build \
fv/fv.test \
$(GENERATED_FILES) \
go/docs/calc.pdf \
release-notes-* \
fv/infrastructure/crds/ \
vendor \
Makefile.common*
find . -name "junit.xml" -type f -delete
find . -name "*.coverprofile" -type f -delete
find . -name "coverage.xml" -type f -delete
find . -name ".coverage" -type f -delete
find . -name "*.pyc" -type f -delete
$(DOCKER_GO_BUILD) make -C bpf-apache clean
$(DOCKER_GO_BUILD) make -C bpf-gpl clean
-docker rmi $(BUILD_IMAGE)-wgtool:latest-amd64
-docker rmi $(BUILD_IMAGE)-wgtool:latest
###############################################################################
# Automated pin updates
###############################################################################
update-pins: update-libcalico-pin update-typha-pin update-pod2daemon-pin
POD2DAEMON_BRANCH?=$(PIN_BRANCH)
POD2DAEMON_REPO?=github.com/projectcalico/pod2daemon
update-pod2daemon-pin:
$(call update_pin,github.com/projectcalico/pod2daemon,$(POD2DAEMON_REPO),$(POD2DAEMON_BRANCH))
###############################################################################
# Building the binary
###############################################################################
build: bin/calico-felix build-bpf bin/calico-felix.exe
build-all: $(addprefix sub-build-,$(VALIDARCHES))
sub-build-%:
$(MAKE) build ARCH=$*
bin/calico-felix: bin/calico-felix-$(ARCH)
ln -f bin/calico-felix-$(ARCH) bin/calico-felix
ifeq ($(ARCH), amd64)
CGO_ENABLED=1
else
CGO_ENABLED=0
endif
DOCKER_GO_BUILD_CGO=$(DOCKER_RUN) -e CGO_ENABLED=$(CGO_ENABLED) $(CALICO_BUILD)
bin/calico-felix-$(ARCH): $(SRC_FILES) $(LOCAL_BUILD_DEP)
@echo Building felix for $(ARCH) on $(BUILDARCH)
mkdir -p bin
if [ "$(SEMAPHORE)" != "true" -o ! -e $@ ] ; then \
$(DOCKER_GO_BUILD_CGO) \
sh -c 'go build -v -i -o $@ -v $(BUILD_FLAGS) $(LDFLAGS) "$(PACKAGE_NAME)/cmd/calico-felix"'; \
fi
bin/calico-felix-race-$(ARCH): $(SRC_FILES) $(LOCAL_BUILD_DEP)
@echo Building felix with race detector enabled for $(ARCH) on $(BUILDARCH)
mkdir -p bin
if [ "$(SEMAPHORE)" != "true" -o ! -e $@ ] ; then \
$(DOCKER_GO_BUILD_CGO) \
sh -c 'go build -v -race -i -o $@ -v $(BUILD_FLAGS) $(LDFLAGS) "$(PACKAGE_NAME)/cmd/calico-felix"'; \
fi
# Generate the protobuf bindings for go. The proto/felixbackend.pb.go file is included in SRC_FILES
protobuf proto/felixbackend.pb.go: proto/felixbackend.proto
docker run --rm --user $(LOCAL_USER_ID):$(LOCAL_GROUP_ID) \
-v $(CURDIR):/code -v $(CURDIR)/proto:/src:rw \
$(PROTOC_CONTAINER) \
--gogofaster_out=plugins=grpc:. \
felixbackend.proto
# Make sure the generated code won't cause a static-checks failure.
$(MAKE) fix
# We pre-build lots of different variants of the TC programs, defer to the script.
BPF_GPL_O_FILES:=$(addprefix bpf-gpl/,$(shell bpf-gpl/list-objs))
# There's a one-to-one mapping from UT C files to objects and the same for the apache programs..
BPF_GPL_UT_O_FILES:=$(BPF_GPL_UT_C_FILES:.c=.o) $(addprefix bpf-gpl/,$(shell bpf-gpl/list-ut-objs))
BPF_APACHE_C_FILES:=$(wildcard bpf-apache/*.c)
BPF_APACHE_O_FILES:=$(addprefix bpf-apache/bin/,$(notdir $(BPF_APACHE_C_FILES:.c=.o)))
ALL_BPF_PROGS=$(BPF_GPL_O_FILES) $(BPF_APACHE_O_FILES)
# Mark the BPF programs phony so we'll always defer to their own makefile. This is OK as long as
# we're only depending on the BPF programs from other phony targets. (Otherwise, we'd do
# unnecessary rebuilds of anything that depends on the BPF prgrams.)
.PHONY: build-bpf clean-bpf
build-bpf:
rm -f bpf-gpl/*.d bpf-apache/*.d
$(DOCKER_GO_BUILD) sh -c "make -j -C bpf-apache all && \
make -j -C bpf-gpl all ut-objs"
clean-bpf:
rm -f bpf-gpl/*.d bpf-apache/*.d
$(DOCKER_GO_BUILD) sh -c "make -j -C bpf-apache clean && \
make -j -C bpf-gpl clean"
bpf/asm/opcode_string.go: bpf/asm/asm.go
$(DOCKER_GO_BUILD) go generate ./bpf/asm/
###############################################################################
# Building the image
###############################################################################
# Build the calico/felix docker image, which contains only Felix.
.PHONY: $(BUILD_IMAGE) $(BUILD_IMAGE)-$(ARCH)
# by default, build the image for the target architecture
.PHONY: image-all
image-all: $(addprefix sub-image-,$(VALIDARCHES))
sub-image-%:
$(MAKE) image ARCH=$*
image: $(BUILD_IMAGE)
$(BUILD_IMAGE): $(BUILD_IMAGE)-$(ARCH)
$(BUILD_IMAGE)-$(ARCH): bin/calico-felix-$(ARCH) \
bin/calico-bpf \
build-bpf \
docker-image/calico-felix-wrapper \
docker-image/felix.cfg \
docker-image/Dockerfile* \
register
# Reconstruct the bin and bpf directories because we don't want to accidentally add
# leftover files (say from a build on another branch) into the docker image.
rm -rf docker-image/bin
mkdir -p docker-image/bin
cp bin/calico-felix-$(ARCH) docker-image/bin/
cp bin/calico-bpf docker-image/bin/
rm -rf docker-image/bpf
mkdir -p docker-image/bpf/bin
# Copy only the files we're explicitly expecting (in case we have left overs after switching branch).
cp $(ALL_BPF_PROGS) docker-image/bpf/bin
docker build --pull -t $(BUILD_IMAGE):latest-$(ARCH) --build-arg QEMU_IMAGE=$(CALICO_BUILD) --file ./docker-image/Dockerfile.$(ARCH) docker-image;
ifeq ($(ARCH),amd64)
docker tag $(BUILD_IMAGE):latest-$(ARCH) $(BUILD_IMAGE):latest
endif
ifeq ($(FV_RACE_DETECTOR_ENABLED),true)
FV_BINARY=calico-felix-race-amd64
else
FV_BINARY=calico-felix-amd64
endif
image-test: image fv/Dockerfile.test.amd64 bin/pktgen bin/test-workload bin/test-connection bin/$(FV_BINARY) image-wgtool
docker build -t $(BUILD_IMAGE)-test:latest-$(ARCH) --build-arg FV_BINARY=$(FV_BINARY) --file ./fv/Dockerfile.test.$(ARCH) bin;
ifeq ($(ARCH),amd64)
docker tag $(BUILD_IMAGE)-test:latest-$(ARCH) $(BUILD_IMAGE)-test:latest
endif
image-wgtool: fv/Dockerfile.wgtool.amd64
docker build -t $(BUILD_IMAGE)-wgtool:latest-$(ARCH) --file ./fv/Dockerfile.wgtool.$(ARCH) fv;
ifeq ($(ARCH),amd64)
docker tag $(BUILD_IMAGE)-wgtool:latest-$(ARCH) $(BUILD_IMAGE)-wgtool:latest
endif
###############################################################################
# Image build/push
###############################################################################
# we want to be able to run the same recipe on multiple targets keyed on the image name
# to do that, we would use the entire image name, e.g. calico/node:abcdefg, as the stem, or '%', in the target
# however, make does **not** allow the usage of invalid filename characters - like / and : - in a stem, and thus errors out
# to get around that, we "escape" those characters by converting all : to --- and all / to ___ , so that we can use them
# in the target, we then unescape them back
escapefs = $(subst :,---,$(subst /,___,$(1)))
unescapefs = $(subst ---,:,$(subst ___,/,$(1)))
# these macros create a list of valid architectures for pushing manifests
space :=
space +=
comma := ,
prefix_linux = $(addprefix linux/,$(strip $1))
join_platforms = $(subst $(space),$(comma),$(call prefix_linux,$(strip $1)))
imagetag:
ifndef IMAGETAG
$(error IMAGETAG is undefined - run using make <target> IMAGETAG=X.Y.Z)
endif
## push one arch
push: imagetag $(addprefix sub-single-push-,$(call escapefs,$(PUSH_IMAGES)))
sub-single-push-%:
docker push $(call unescapefs,$*:$(IMAGETAG)-$(ARCH))
## push all arches
push-all: imagetag $(addprefix sub-push-,$(VALIDARCHES))
sub-push-%:
$(MAKE) push ARCH=$* IMAGETAG=$(IMAGETAG)
## push multi-arch manifest where supported
push-manifests: imagetag $(addprefix sub-manifest-,$(call escapefs,$(PUSH_MANIFEST_IMAGES)))
sub-manifest-%:
# Docker login to hub.docker.com required before running this target as we are using
# $(DOCKER_CONFIG) holds the docker login credentials path to credentials based on
# manifest-tool's requirements here https://github.com/estesp/manifest-tool#sample-usage
docker run -t --entrypoint /bin/sh -v $(DOCKER_CONFIG):/root/.docker/config.json $(CALICO_BUILD) -c "/usr/bin/manifest-tool push from-args --platforms $(call join_platforms,$(VALIDARCHES)) --template $(call unescapefs,$*:$(IMAGETAG))-ARCH --target $(call unescapefs,$*:$(IMAGETAG))"
## push default amd64 arch where multi-arch manifest is not supported
push-non-manifests: imagetag $(addprefix sub-non-manifest-,$(call escapefs,$(PUSH_NONMANIFEST_IMAGES)))
sub-non-manifest-%:
ifeq ($(ARCH),amd64)
docker push $(call unescapefs,$*:$(IMAGETAG))
else
$(NOECHO) $(NOOP)
endif
## tag images of one arch for all supported registries
tag-images: imagetag $(addprefix sub-single-tag-images-arch-,$(call escapefs,$(PUSH_IMAGES))) $(addprefix sub-single-tag-images-non-manifest-,$(call escapefs,$(PUSH_NONMANIFEST_IMAGES)))
sub-single-tag-images-arch-%:
docker tag $(BUILD_IMAGE):latest-$(ARCH) $(call unescapefs,$*:$(IMAGETAG)-$(ARCH))
# because some still do not support multi-arch manifest
sub-single-tag-images-non-manifest-%:
ifeq ($(ARCH),amd64)
docker tag $(BUILD_IMAGE):latest-$(ARCH) $(call unescapefs,$*:$(IMAGETAG))
else
$(NOECHO) $(NOOP)
endif
## tag images of all archs
tag-images-all: imagetag $(addprefix sub-tag-images-,$(VALIDARCHES))
sub-tag-images-%:
$(MAKE) tag-images ARCH=$* IMAGETAG=$(IMAGETAG)
###############################################################################
# Static checks
###############################################################################
LOCAL_CHECKS = check-typha-pins
LIBCALICO_FELIX?=$(shell $(DOCKER_GO_BUILD) go list -m -f "{{.Version}}" github.com/projectcalico/libcalico-go)
TYPHA_GOMOD?=$(shell $(DOCKER_GO_BUILD) go list -m -f "{{.GoMod}}" github.com/projectcalico/typha)
ifneq ($(TYPHA_GOMOD),)
LIBCALICO_TYPHA?=$(shell $(DOCKER_GO_BUILD) grep libcalico-go $(TYPHA_GOMOD) | cut -d' ' -f2)
endif
.PHONY: check-typha-pins
check-typha-pins:
@echo "Checking Typha's libcalico-go pin matches ours (so that any datamodel"
@echo "changes are reflected in the Typha-Felix API)."
@echo
@echo "Felix's libcalico-go pin: $(LIBCALICO_FELIX)"
@echo "Typha's libcalico-go pin: $(LIBCALICO_TYPHA)"
if [ "$(LIBCALICO_FELIX)" != "$(LIBCALICO_TYPHA)" ]; then \
echo "Typha and Felix libcalico-go pins differ."; \
false; \
fi
###############################################################################
# Unit Tests
###############################################################################
UT_PACKAGES_TO_SKIP?=fv,k8sfv,bpf/ut
.PHONY: ut
ut combined.coverprofile: $(SRC_FILES) build-bpf
@echo Running Go UTs.
$(DOCKER_GO_BUILD) ./utils/run-coverage -skipPackage $(UT_PACKAGES_TO_SKIP) $(GINKGO_ARGS)
###############################################################################
# FV Tests
###############################################################################
fv/fv.test: $(SRC_FILES)
# We pre-build the FV test binaries so that we can run them
# outside a container and allow them to interact with docker.
$(DOCKER_GO_BUILD) go test $(BUILD_FLAGS) ./$(shell dirname $@) -c --tags fvtests -o $@
REMOTE_DEPS=fv/infrastructure/crds
fv/infrastructure/crds: go.mod go.sum $(LOCAL_BUILD_DEP)
$(DOCKER_GO_BUILD) sh -c ' \
go list all; \
cp -r `go list -m -f "{{.Dir}}" github.com/projectcalico/libcalico-go`/config/crd fv/infrastructure/crds; \
chmod +w fv/infrastructure/crds/'
.PHONY: fv
# runs all of the fv tests
# to run it in parallel, decide how many parallel engines you will run, and in each one call:
# $(MAKE) fv FV_BATCHES_TO_RUN="<num>" FV_NUM_BATCHES=<num>
# where
# FV_NUM_BATCHES = total parallel batches
# FV_BATCHES_TO_RUN = which number this is
# e.g. to run it in 10 parallel runs:
# $(MAKE) fv FV_BATCHES_TO_RUN="1" FV_NUM_BATCHES=10 # the first 1/10
# $(MAKE) fv FV_BATCHES_TO_RUN="2" FV_NUM_BATCHES=10 # the second 1/10
# $(MAKE) fv FV_BATCHES_TO_RUN="3" FV_NUM_BATCHES=10 # the third 1/10
# ...
# $(MAKE) fv FV_BATCHES_TO_RUN="10" FV_NUM_BATCHES=10 # the tenth 1/10
# etc.
fv fv/latency.log fv/data-races.log: $(REMOTE_DEPS) image-test bin/iptables-locker bin/test-workload bin/test-connection bin/calico-bpf fv/fv.test
rm -f fv/data-races.log fv/latency.log
cd fv && \
FV_FELIXIMAGE=$(FV_FELIXIMAGE) \
FV_ETCDIMAGE=$(FV_ETCDIMAGE) \
FV_TYPHAIMAGE=$(FV_TYPHAIMAGE) \
FV_K8SIMAGE=$(FV_K8SIMAGE) \
FV_NUM_BATCHES=$(FV_NUM_BATCHES) \
FV_BATCHES_TO_RUN="$(FV_BATCHES_TO_RUN)" \
PRIVATE_KEY=`pwd`/private.key \
GINKGO_ARGS='$(GINKGO_ARGS)' \
GINKGO_FOCUS="$(GINKGO_FOCUS)" \
FELIX_FV_ENABLE_BPF="$(FELIX_FV_ENABLE_BPF)" \
FV_RACE_DETECTOR_ENABLED=$(FV_RACE_DETECTOR_ENABLED) \
FELIX_FV_WIREGUARD_AVAILABLE=`./wireguard-available >/dev/null && echo true || echo false` \
./run-batches
@if [ -e fv/latency.log ]; then \
echo; \
echo "Latency results:"; \
echo; \
cat fv/latency.log; \
fi
fv-bpf:
$(MAKE) fv FELIX_FV_ENABLE_BPF=true
check-wireguard:
fv/wireguard-available || ( echo "WireGuard not available."; exit 1 )
###############################################################################
# K8SFV Tests
###############################################################################
# Targets for Felix testing with the k8s backend and a k8s API server,
# with k8s model resources being injected by a separate test client.
GET_CONTAINER_IP := docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}'
GRAFANA_VERSION=4.1.2
PROMETHEUS_DATA_DIR := $$HOME/prometheus-data
K8SFV_PROMETHEUS_DATA_DIR := $(PROMETHEUS_DATA_DIR)/k8sfv
$(K8SFV_PROMETHEUS_DATA_DIR):
mkdir -p $@
# Directories that aren't part of the main Felix program,
# e.g. standalone test programs.
K8SFV_DIR:=k8sfv
NON_FELIX_DIRS:=$(K8SFV_DIR)
# Files for the Felix+k8s backend test program.
K8SFV_GO_FILES:=$(shell find ./$(K8SFV_DIR) -name prometheus -prune -o -type f -name '*.go' -print)
.PHONY: k8sfv-test k8sfv-test-existing-felix
# Run k8sfv test with Felix built from current code.
# control whether or not we use typha with USE_TYPHA=true or USE_TYPHA=false
# e.g.
# $(MAKE) k8sfv-test JUST_A_MINUTE=true USE_TYPHA=true
# $(MAKE) k8sfv-test JUST_A_MINUTE=true USE_TYPHA=false
k8sfv-test: image-test k8sfv-test-existing-felix
# Run k8sfv test with whatever is the existing 'calico/felix:latest'
# container image. To use some existing Felix version other than
# 'latest', do 'FELIX_VERSION=<...> make k8sfv-test-existing-felix'.
k8sfv-test-existing-felix: $(REMOTE_DEPS) bin/k8sfv.test
FV_ETCDIMAGE=$(FV_ETCDIMAGE) \
FV_TYPHAIMAGE=$(FV_TYPHAIMAGE) \
FV_FELIXIMAGE=$(FV_FELIXIMAGE) \
FV_K8SIMAGE=$(FV_K8SIMAGE) \
PRIVATE_KEY=`pwd`/fv/private.key \
k8sfv/run-test
bin/k8sfv.test: $(K8SFV_GO_FILES)
@echo Building $@...
$(DOCKER_GO_BUILD) \
sh -c 'go test -c $(BUILD_FLAGS) -o $@ ./k8sfv'
.PHONY: run-prometheus run-grafana stop-prometheus stop-grafana
run-prometheus: stop-prometheus $(K8SFV_PROMETHEUS_DATA_DIR)
FELIX_IP=`$(GET_CONTAINER_IP) k8sfv-felix` && \
sed "s/__FELIX_IP__/$${FELIX_IP}/" < $(K8SFV_DIR)/prometheus/prometheus.yml.in > $(K8SFV_DIR)/prometheus/prometheus.yml
docker run --detach --name k8sfv-prometheus \
-v $(CURDIR)/$(K8SFV_DIR)/prometheus/prometheus.yml:/etc/prometheus.yml \
-v $(K8SFV_PROMETHEUS_DATA_DIR):/prometheus \
prom/prometheus \
-config.file=/etc/prometheus.yml \
-storage.local.path=/prometheus
stop-prometheus:
@-docker rm -f k8sfv-prometheus
sleep 2
run-grafana: stop-grafana run-prometheus
docker run --detach --name k8sfv-grafana -p 3000:3000 \
-v $(CURDIR)/$(K8SFV_DIR)/grafana:/etc/grafana \
-v $(CURDIR)/$(K8SFV_DIR)/grafana-dashboards:/etc/grafana-dashboards \
grafana/grafana:$(GRAFANA_VERSION) --config /etc/grafana/grafana.ini
# Wait for it to get going.
sleep 5
# Configure prometheus data source.
PROMETHEUS_IP=`$(GET_CONTAINER_IP) k8sfv-prometheus` && \
sed "s/__PROMETHEUS_IP__/$${PROMETHEUS_IP}/" < $(K8SFV_DIR)/grafana-datasources/my-prom.json.in | \
curl 'http://admin:admin@127.0.0.1:3000/api/datasources' -X POST \
-H 'Content-Type: application/json;charset=UTF-8' --data-binary @-
stop-grafana:
@-docker rm -f k8sfv-grafana
sleep 2
bin/calico-bpf: $(SRC_FILES) $(LOCAL_BUILD_DEP)
@echo Building calico-bpf...
mkdir -p bin
$(DOCKER_GO_BUILD_CGO) \
sh -c 'go build -v -i -o $@ -v $(BUILD_FLAGS) $(LDFLAGS) "$(PACKAGE_NAME)/cmd/calico-bpf"'
bin/pktgen: $(SRC_FILES) $(LOCAL_BUILD_DEP)
@echo Building pktgen...
mkdir -p bin
$(DOCKER_GO_BUILD) \
sh -c 'go build -v -i -o $@ -v $(BUILD_FLAGS) $(LDFLAGS) "$(PACKAGE_NAME)/fv/pktgen"'
bin/iptables-locker: $(LOCAL_BUILD_DEP) go.mod $(shell find iptables -type f -name '*.go' -print)
@echo Building iptables-locker...
mkdir -p bin
$(DOCKER_GO_BUILD) \
sh -c 'go build -v -i -o $@ -v $(BUILD_FLAGS) $(LDFLAGS) "$(PACKAGE_NAME)/fv/iptables-locker"'
bin/test-workload: $(LOCAL_BUILD_DEP) go.mod fv/cgroup/cgroup.go fv/utils/utils.go fv/connectivity/*.go fv/test-workload/*.go
@echo Building test-workload...
mkdir -p bin
$(DOCKER_GO_BUILD) \
sh -c 'go build -v -i -o $@ -v $(BUILD_FLAGS) $(LDFLAGS) "$(PACKAGE_NAME)/fv/test-workload"'
bin/test-connection: $(LOCAL_BUILD_DEP) go.mod fv/cgroup/cgroup.go fv/utils/utils.go fv/connectivity/*.go fv/test-connection/*.go
@echo Building test-connection...
mkdir -p bin
$(DOCKER_GO_BUILD) \
sh -c 'go build -v -i -o $@ -v $(BUILD_FLAGS) $(LDFLAGS) "$(PACKAGE_NAME)/fv/test-connection"'
st:
@echo "No STs available"
###############################################################################
# CI/CD
###############################################################################
.PHONY: ci cd
ci: mod-download image-all ut
ifeq (,$(filter fv, $(EXCEPT)))
@$(MAKE) fv
endif
ifeq (,$(filter k8sfv-test, $(EXCEPT)))
@$(MAKE) k8sfv-test JUST_A_MINUTE=true USE_TYPHA=true
@$(MAKE) k8sfv-test JUST_A_MINUTE=true USE_TYPHA=false
endif
## Deploy images to registry
cd:
ifndef CONFIRM
$(error CONFIRM is undefined - run using make <target> CONFIRM=true)
endif
ifndef BRANCH_NAME
$(error BRANCH_NAME is undefined - run using make <target> BRANCH_NAME=var or set an environment variable)
endif
$(MAKE) tag-images-all push-all push-manifests push-non-manifests IMAGETAG=$(BRANCH_NAME) EXCLUDEARCH="$(EXCLUDEARCH)"
$(MAKE) tag-images-all push-all push-manifests push-non-manifests IMAGETAG=$(shell git describe --tags --dirty --always --long) EXCLUDEARCH="$(EXCLUDEARCH)"
###############################################################################
# Release
###############################################################################
PREVIOUS_RELEASE=$(shell git describe --tags --abbrev=0)
GIT_VERSION?=$(shell git describe --tags --dirty)
## Tags and builds a release from start to finish.
release: release-prereqs
$(MAKE) VERSION=$(VERSION) release-tag
$(MAKE) VERSION=$(VERSION) release-build
$(MAKE) VERSION=$(VERSION) release-verify
@echo ""
@echo "Release build complete. Next, push the produced images."
@echo ""
@echo " make VERSION=$(VERSION) release-publish"
@echo ""
## Produces a git tag for the release.
release-tag: release-prereqs release-notes
git tag $(VERSION) -F release-notes-$(VERSION)
@echo ""
@echo "Now you can build the release:"
@echo ""
@echo " make VERSION=$(VERSION) release-build"
@echo ""
## Produces a clean build of release artifacts at the specified version.
release-build: release-prereqs clean
# Check that the correct code is checked out.
ifneq ($(VERSION), $(GIT_VERSION))
$(error Attempt to build $(VERSION) from $(GIT_VERSION))
endif
$(MAKE) image-all
$(MAKE) tag-images-all IMAGETAG=$(VERSION)
# Generate the `latest` images.
$(MAKE) tag-images-all IMAGETAG=latest
## Verifies the release artifacts produces by `make release-build` are correct.
release-verify: release-prereqs
# Check the reported version is correct for each release artifact.
for img in $(BUILD_IMAGE):$(VERSION)-$(ARCH) quay.io/$(BUILD_IMAGE):$(VERSION)-$(ARCH); do \
if docker run $$img calico-felix --version | grep -q '$(VERSION)$$'; \
then \
echo "Check successful. ($$img)"; \
else \
echo "Incorrect version in docker image $$img!"; \
result=false; \
fi \
done; \
## Generates release notes based on commits in this version.
release-notes: release-prereqs
mkdir -p dist
echo "# Changelog" > release-notes-$(VERSION)
sh -c "git cherry -v $(PREVIOUS_RELEASE) | cut '-d ' -f 2- | sed 's/^/- /' >> release-notes-$(VERSION)"
## Pushes a github release and release artifacts produced by `make release-build`.
release-publish: release-prereqs
# Push the git tag.
git push origin $(VERSION)
# Push images.
# Disabling for now since no-one is consuming the images.
# $(MAKE) push-all IMAGETAG=$(VERSION)
# Push binaries to GitHub release.
# Requires ghr: https://github.com/tcnksm/ghr
# Requires GITHUB_TOKEN environment variable set.
ghr -u projectcalico -r felix \
-b "Release notes can be found at https://docs.projectcalico.org" \
-n $(VERSION) \
$(VERSION) ./bin/
@echo "Confirm that the release was published at the following URL."
@echo ""
@echo " https://$(PACKAGE_NAME)/releases/tag/$(VERSION)"
@echo ""
@echo "Build and publish the debs and rpms for this release."
@echo ""
@echo "If this is the latest stable release, then run the following to push 'latest' images."
@echo ""
@echo " make VERSION=$(VERSION) release-publish-latest"
@echo ""
# WARNING: Only run this target if this release is the latest stable release. Do NOT
# run this target for alpha / beta / release candidate builds, or patches to earlier Calico versions.
## Pushes `latest` release images. WARNING: Only run this for latest stable releases.
release-publish-latest: release-prereqs
# Check latest versions match.
for img in $(BUILD_IMAGE):latest-$(ARCH) quay.io/$(BUILD_IMAGE):latest-$(ARCH); do \
if docker run $$img calico-felix --version | grep -q '$(VERSION)$$'; \
then \
echo "Check successful. ($$img)"; \
else \
echo "Incorrect version in docker image $$img!"; \
result=false; \
fi \
done; \
# Disabling for now since no-one is consuming the images.
# $(MAKE) push-all IMAGETAG=latest
## release-prereqs checks that the environment is configured properly to create a release.
release-prereqs:
ifndef VERSION
$(error VERSION is undefined - run using make release VERSION=vX.Y.Z)
endif
ifdef LOCAL_BUILD
$(error LOCAL_BUILD must not be set for a release)
endif
ifndef GITHUB_TOKEN
$(error GITHUB_TOKEN must be set for a release)
endif
ifeq (, $(shell which ghr))
$(error Unable to find `ghr` in PATH, run this: go get -u github.com/tcnksm/ghr)
endif
###############################################################################
# Developer helper scripts (not used by build or test)
###############################################################################
.PHONY: ut-no-cover
ut-no-cover: $(SRC_FILES)
@echo Running Go UTs without coverage.
$(DOCKER_GO_BUILD) ginkgo -r -skipPackage $(UT_PACKAGES_TO_SKIP) $(GINKGO_ARGS)
.PHONY: ut-watch
ut-watch: $(SRC_FILES)
@echo Watching go UTs for changes...
$(DOCKER_GO_BUILD) ginkgo watch -r -skipPackage $(UT_PACKAGES_TO_SKIP) $(GINKGO_ARGS)
.PHONY: bin/bpf.test
bin/bpf.test: $(GENERATED_FILES) $(shell find bpf/ -name '*.go')
$(DOCKER_GO_BUILD_CGO) go test $(BUILD_FLAGS) ./bpf/ -c -o $@
.PHONY: bin/bpf_ut.test
bin/bpf_ut.test: $(GENERATED_FILES) $(shell find bpf/ -name '*.go')
$(DOCKER_GO_BUILD_CGO) go test $(BUILD_FLAGS) ./bpf/ut -c -o $@
# Build debug version of bpf.test for use with the delve debugger.
.PHONY: bin/bpf_debug.test
bin/bpf_debug.test: $(GENERATED_FILES) $(shell find bpf/ -name '*.go')
$(DOCKER_GO_BUILD_CGO) go test $(BUILD_FLAGS) ./bpf/ut -c -gcflags="-N -l" -o $@
.PHONY: ut-bpf
ut-bpf: bin/bpf_ut.test bin/bpf.test build-bpf
$(DOCKER_RUN) \
--privileged \
-e RUN_AS_ROOT=true \
$(CALICO_BUILD) sh -c ' \
mount bpffs /sys/fs/bpf -t bpf && \
cd /go/src/$(PACKAGE_NAME)/bpf/ && \
BPF_FORCE_REAL_LIB=true ../bin/bpf.test -test.v -test.run "$(FOCUS)"'
$(DOCKER_RUN) \
--privileged \
-e RUN_AS_ROOT=true \
-v `pwd`:/code \
-v `pwd`/bpf-gpl/bin:/usr/lib/calico/bpf \
$(CALICO_BUILD) sh -c ' \
mount bpffs /sys/fs/bpf -t bpf && \
cd /go/src/$(PACKAGE_NAME)/bpf/ut && \
../../bin/bpf_ut.test -test.v -test.run "$(FOCUS)"'
## Launch a browser with Go coverage stats for the whole project.
.PHONY: cover-browser
cover-browser: combined.coverprofile
go tool cover -html="combined.coverprofile"
.PHONY: cover-report
cover-report: combined.coverprofile
# Print the coverage. We use sed to remove the verbose prefix and trim down
# the whitespace.
@echo
@echo ======== All coverage =========
@echo
@$(DOCKER_GO_BUILD) sh -c 'go tool cover -func combined.coverprofile | \
sed 's=$(PACKAGE_NAME)/==' | \
column -t'
@echo
@echo ======== Missing coverage only =========
@echo
@$(DOCKER_GO_BUILD) sh -c "go tool cover -func combined.coverprofile | \
sed 's=$(PACKAGE_NAME)/==' | \
column -t | \
grep -v '100\.0%'"
bin/calico-felix.transfer-url: bin/calico-felix
$(DOCKER_GO_BUILD) sh -c 'curl --upload-file bin/calico-felix https://transfer.sh/calico-felix > $@'
# Cross-compile Felix for Windows
bin/calico-felix.exe: $(SRC_FILES)
@echo Building felix for Windows...
mkdir -p bin
$(DOCKER_RUN) $(LOCAL_BUILD_MOUNTS) $(CALICO_BUILD) sh -c '$(GIT_CONFIG_SSH) \
GOOS=windows go build -v -o $@ -v $(LDFLAGS) "$(PACKAGE_NAME)/cmd/calico-felix" && \
( ldd $@ 2>&1 | grep -q "Not a valid dynamic program\|not a dynamic executable" || \
( echo "Error: $@ was not statically linked"; false ) )'
.PHONY: patch-script
patch-script: bin/calico-felix.transfer-url
$(DOCKER_GO_BUILD) bash -c 'utils/make-patch-script.sh $$(cat bin/calico-felix.transfer-url)'
## Generate a diagram of Felix's internal calculation graph.
docs/calc.pdf: docs/calc.dot
cd docs/ && dot -Tpdf calc.dot -o calc.pdf
## Install or update the tools used by the build
.PHONY: update-tools
update-tools:
go get -u github.com/onsi/ginkgo/ginkgo