Skip to content

Commit b4f5686

Browse files
Switch to using operator for test cluster install
1 parent ce5d841 commit b4f5686

17 files changed

+182
-1283
lines changed

lib.Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1304,7 +1304,10 @@ $(REPO_ROOT)/.$(KIND_NAME).created: $(KUBECTL) $(KIND)
13041304
while ! KUBECONFIG=$(KIND_KUBECONFIG) $(KUBECTL) create -f $(REPO_ROOT)/libcalico-go/config/crd; do echo "Waiting for CRDs to be created"; sleep 2; done
13051305
touch $@
13061306

1307-
kind-cluster-destroy: $(KIND) $(KUBECTL)
1307+
kind-cluster-destroy: $(KIND) $(KUBECTL) bin/helm
1308+
# We need to drain the cluster gracefully when shutting down to avoid a netdev unregister error from the kernel.
1309+
# This requires we execute CNI del on pods with pod networking.
1310+
-$(KUBECTL) scale deployment -n tigera-operator tigera-operator --replicas=1
13081311
-$(KUBECTL) --kubeconfig=$(KIND_KUBECONFIG) drain kind-control-plane kind-worker kind-worker2 kind-worker3 --ignore-daemonsets --force
13091312
-$(KIND) delete cluster --name $(KIND_NAME)
13101313
rm -f $(KIND_KUBECONFIG)

manifests/generate.sh

-9
Original file line numberDiff line numberDiff line change
@@ -124,15 +124,6 @@ done
124124
# Remove the last separator (last line)
125125
sed -i -e '$ d' tigera-operator-ocp-upgrade.yaml
126126

127-
##########################################################################
128-
# Build Calico manifest used for in-repo testing. This is largely the same as the
129-
# one we ship, but with tweaked values.
130-
##########################################################################
131-
echo "Generating manifest from charts/values/$FILE"
132-
${HELM} -n kube-system template \
133-
../charts/calico \
134-
-f ../node/tests/k8st/infra/values.yaml > ../node/tests/k8st/infra/calico-kdd.yaml
135-
136127
##########################################################################
137128
# Replace image versions for "static" Calico manifests.
138129
##########################################################################

node/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,6 @@ filesystem/included-source
2323
config/
2424
kubeconfig.yaml
2525
./tests/k8st/infra/calico.yaml.tmp
26+
tests/k8st/infra/operator/
2627
apiserver.crt
2728
apiserver.key

node/Makefile

+22-5
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,10 @@ clean: clean-windows
165165
rm -rf certs *.tar $(NODE_CONTAINER_BIN_DIR)
166166
rm -rf $(REMOTE_DEPS)
167167
rm -rf filesystem/included-source
168+
rm -rf tests/k8st/infra/operator
168169
rm -rf dist
169170
rm -rf bin
170-
# We build felix as part of the node build, so clean it as part of the clean.
171+
# We build these as part of the node build, so clean them as part of the clean.
171172
make -C ../felix clean
172173
# Delete images that we built in this repo
173174
-docker image rm -f $$(docker images $(NODE_IMAGE) -a -q)
@@ -291,7 +292,7 @@ $(FELIX_GPL_SOURCE): .felix-gpl-source.created
291292
###############################################################################
292293
# FV Tests
293294
###############################################################################
294-
K8ST_IMAGE_TARS=calico-node.tar calico-typha.tar calico-apiserver.tar calico-cni.tar pod2daemon.tar calicoctl.tar kube-controllers.tar
295+
K8ST_IMAGE_TARS=calico-node.tar calico-typha.tar calico-apiserver.tar calico-cni.tar pod2daemon.tar csi.tar node-driver-registrar.tar calicoctl.tar kube-controllers.tar operator.tar
295296

296297
ifeq ($(SEMAPHORE_GIT_REF_TYPE), pull-request)
297298
# Determine the tests to run using the test spider tool, which emits a list of impacted packages.
@@ -340,6 +341,10 @@ test_image: .calico_test.created
340341
$(DOCKER_BUILD) --build-arg ETCD_VERSION=$(ETCD_VERSION) -f calico_test/Dockerfile -t $(TEST_CONTAINER_NAME) calico_test
341342
touch $@
342343

344+
chart: ../bin/tigera-operator-$(GIT_VERSION).tgz
345+
../bin/tigera-operator-$(GIT_VERSION).tgz:
346+
make -C ../ bin/tigera-operator-$(GIT_VERSION).tgz
347+
343348
calico-node.tar: $(NODE_CONTAINER_CREATED)
344349
docker save --output $@ $(NODE_IMAGE):latest-$(ARCH)
345350

@@ -351,11 +356,23 @@ calico-apiserver.tar: ../go.mod $(shell find ../apiserver -name '*.go') $(shell
351356
make -C ../apiserver image
352357
docker save --output $@ calico/apiserver:latest-$(ARCH)
353358

359+
operator.tar: $(K8ST_IMAGE_TARS) tests/k8st/infra/calico_versions.yml
360+
cd tests/k8st/infra/ && BRANCH=$(OPERATOR_BRANCH) ./build-operator.sh
361+
docker save --output $@ docker.io/tigera/operator:test-build
362+
354363
calico-cni.tar: ../go.mod $(shell find ../cni-plugin -name '*.go') $(shell find ../libcalico-go -name '*.go')
355364
make -C ../cni-plugin image
356365
docker save --output $@ calico/cni:latest-$(ARCH)
357366

358-
pod2daemon.tar: ../go.mod $(shell find ../pod2daemon -name '*.go')
367+
csi.tar: ../go.mod $(shell find ../pod2daemon/ -name '*.go')
368+
make -C ../pod2daemon image
369+
docker save --output $@ calico/csi:latest-$(ARCH)
370+
371+
node-driver-registrar.tar: ../go.mod $(shell find ../pod2daemon/ -name '*.go')
372+
make -C ../pod2daemon image
373+
docker save --output $@ calico/node-driver-registrar:latest-$(ARCH)
374+
375+
pod2daemon.tar: ../go.mod $(shell find ../pod2daemon/ -name '*.go')
359376
make -C ../pod2daemon image
360377
docker save --output $@ calico/pod2daemon-flexvol:latest-$(ARCH)
361378

@@ -399,8 +416,8 @@ k8s-test:
399416
$(MAKE) kind-k8st-cleanup
400417

401418
.PHONY: kind-k8st-setup
402-
kind-k8st-setup: $(K8ST_IMAGE_TARS) kind-cluster-create
403-
KUBECONFIG=$(KIND_KUBECONFIG) ARCH=$(ARCH) ./tests/k8st/deploy_resources_on_kind_cluster.sh
419+
kind-k8st-setup: $(K8ST_IMAGE_TARS) ../bin/tigera-operator-$(GIT_VERSION).tgz kind-cluster-create
420+
KUBECONFIG=$(KIND_KUBECONFIG) ARCH=$(ARCH) GIT_VERSION=$(GIT_VERSION) ./tests/k8st/deploy_resources_on_kind_cluster.sh
404421

405422
.PHONY: kind-k8st-run-test
406423
kind-k8st-run-test: .calico_test.created $(KIND_KUBECONFIG)

node/tests/k8st/deploy_resources_on_kind_cluster.sh

+33-65
Original file line numberDiff line numberDiff line change
@@ -12,69 +12,24 @@ trap 'cleanup' SIGINT SIGHUP SIGTERM EXIT
1212
# test directory.
1313
TEST_DIR=./tests/k8st
1414
ARCH=${ARCH:-amd64}
15+
GIT_VERSION=${GIT_VERSION:-`git describe --tags --dirty --always --abbrev=12`}
16+
HELM=../bin/helm
17+
CHART=../bin/tigera-operator-$GIT_VERSION.tgz
1518

1619
# kubectl binary.
1720
: ${kubectl:=../hack/test/kind/kubectl}
1821

19-
function checkModule() {
20-
MODULE="$1"
21-
echo "Checking kernel module $MODULE ..."
22-
if lsmod | grep "$MODULE" &>/dev/null; then
23-
return 0
24-
else
25-
return 1
26-
fi
27-
}
28-
29-
function enable_dual_stack() {
30-
# Based on instructions in http://docs.projectcalico.org/master/networking/dual-stack.md
31-
local yaml=$1
32-
# add assign_ipv4 and assign_ipv6 to CNI config
33-
sed -i -e '/"type": "calico-ipam"/r /dev/stdin' "${yaml}" <<EOF
34-
"assign_ipv4": "true",
35-
"assign_ipv6": "true"
36-
EOF
37-
sed -i -e 's/"type": "calico-ipam"/"type": "calico-ipam",/' "${yaml}"
38-
39-
sed -i -e '/"type": "calico"/r /dev/stdin' "${yaml}" <<EOF
40-
"feature_control": {
41-
"floating_ips": true
42-
},
43-
EOF
44-
45-
# And add all the IPV6 env vars
46-
sed -i '/# Enable IPIP/r /dev/stdin' "${yaml}" <<EOF
47-
- name: IP6
48-
value: "autodetect"
49-
- name: CALICO_IPV6POOL_CIDR
50-
value: "fd00:10:244::/64"
51-
EOF
52-
# update FELIX_IPV6SUPPORT=true
53-
sed -i '/FELIX_IPV6SUPPORT/!b;n;c\ value: "true"' "${yaml}"
54-
}
55-
5622
echo "Set ipv6 address on each node"
5723
docker exec kind-control-plane ip -6 addr replace 2001:20::8/64 dev eth0
5824
docker exec kind-worker ip -6 addr replace 2001:20::1/64 dev eth0
5925
docker exec kind-worker2 ip -6 addr replace 2001:20::2/64 dev eth0
6026
docker exec kind-worker3 ip -6 addr replace 2001:20::3/64 dev eth0
27+
6128
echo
6229

6330
echo "Load calico/node docker images onto each node"
6431
$TEST_DIR/load_images_on_kind_cluster.sh
6532

66-
echo "Install Calico and Calicoctl for dualstack"
67-
cp $TEST_DIR/infra/calico-kdd.yaml $TEST_DIR/infra/calico.yaml.tmp
68-
sed -i "s/amd64/${ARCH}/" $TEST_DIR/infra/calico.yaml.tmp
69-
enable_dual_stack $TEST_DIR/infra/calico.yaml.tmp
70-
${kubectl} apply -f $TEST_DIR/infra/calico.yaml.tmp
71-
rm $TEST_DIR/infra/calico.yaml.tmp
72-
cp $TEST_DIR/infra/calicoctl.yaml $TEST_DIR/infra/calicoctl.yaml.tmp
73-
sed -i "s/amd64/${ARCH}/" $TEST_DIR/infra/calicoctl.yaml.tmp
74-
${kubectl} apply -f $TEST_DIR/infra/calicoctl.yaml.tmp
75-
rm $TEST_DIR/infra/calicoctl.yaml.tmp
76-
echo
77-
7833
echo "Install additional permissions for BGP password"
7934
${kubectl} apply -f $TEST_DIR/infra/additional-rbac.yaml
8035
echo
@@ -114,10 +69,30 @@ function wait_pod_ready() {
11469
return $rc
11570
}
11671

72+
echo "Install Calico using the helm chart"
73+
$HELM install calico $CHART -f $TEST_DIR/infra/values.yaml -n tigera-operator --create-namespace
74+
75+
echo "Install calicoctl as a pod"
76+
${kubectl} apply -f $TEST_DIR/infra/calicoctl.yaml
77+
echo
78+
11779
echo "Wait for Calico to be ready..."
118-
wait_pod_ready -l k8s-app=calico-node -n kube-system
119-
wait_pod_ready -l k8s-app=calico-kube-controllers -n kube-system
120-
wait_pod_ready -l k8s-app=kube-dns -n kube-system
80+
while ! time ${kubectl} wait pod -l k8s-app=calico-node --for=condition=Ready -n calico-system --timeout=300s; do
81+
# This happens when no matching resources exist yet, i.e., after installing the operator but before it deploys resources.
82+
sleep 5
83+
done
84+
85+
while ! time ${kubectl} wait pod -l k8s-app=calico-kube-controllers --for=condition=Ready -n calico-system --timeout=300s; do
86+
# This happens when no matching resources exist yet, i.e., after installing the operator but before it deploys resources.
87+
sleep 5
88+
done
89+
90+
while ! time ${kubectl} wait pod -l k8s-app=calico-apiserver --for=condition=Ready -n calico-apiserver --timeout=30s; do
91+
# This happens when no matching resources exist yet, i.e., after installing the operator but before it deploys resources.
92+
sleep 5
93+
done
94+
95+
time ${kubectl} wait pod -l k8s-app=kube-dns --for=condition=Ready -n kube-system --timeout=300s
12196
echo "Calico is running."
12297
echo
12398

@@ -136,19 +111,7 @@ wait_pod_ready -l app=webserver
136111
echo "client and webserver pods are running."
137112
echo
138113

139-
echo "Deploy Calico apiserver"
140-
cp $TEST_DIR/infra/apiserver.yaml $TEST_DIR/infra/apiserver.yaml.tmp
141-
sed -i "s/amd64/${ARCH}/" $TEST_DIR/infra/apiserver.yaml.tmp
142-
${kubectl} apply -f ${TEST_DIR}/infra/apiserver.yaml.tmp
143-
rm $TEST_DIR/infra/apiserver.yaml.tmp
144-
openssl req -x509 -nodes -newkey rsa:4096 -keyout apiserver.key -out apiserver.crt -days 365 -subj "/" -addext "subjectAltName = DNS:calico-api.calico-apiserver.svc"
145-
${kubectl} get secret -n calico-apiserver calico-apiserver-certs ||
146-
${kubectl} create secret -n calico-apiserver generic calico-apiserver-certs --from-file=apiserver.key --from-file=apiserver.crt
147-
${kubectl} patch apiservice v3.projectcalico.org -p \
148-
"{\"spec\": {\"caBundle\": \"$(${kubectl} get secret -n calico-apiserver calico-apiserver-certs -o go-template='{{ index .data "apiserver.crt" }}')\"}}"
149-
wait_pod_ready -l k8s-app=calico-apiserver -n calico-apiserver
150-
echo "Calico apiserver is running."
151-
114+
# Show all the pods running for diags purposes.
152115
${kubectl} get po --all-namespaces -o wide
153116
${kubectl} get svc
154117

@@ -164,3 +127,8 @@ function test_connection() {
164127
}
165128
test_connection 4
166129
test_connection 6
130+
131+
# At the end of it all, scale down the operator so that it doesn't
132+
# make changes to the cluster. Some of our tests modify calico/node, etc.
133+
# We should remove this once we fix up those tests.
134+
${kubectl} scale deployment -n tigera-operator tigera-operator --replicas=0
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#!/bin/bash
2+
3+
# This script produces a custom operator build that is used
4+
# in the ST and e2e tests in this repo.
5+
6+
# Clone the repository if needed.
7+
set -e
8+
REPO=${REPO:-tigera/operator}
9+
BRANCH=${BRANCH:-master}
10+
11+
rm -rf operator/
12+
echo "Cloning https://github.com/${REPO} @ ${BRANCH}"
13+
git clone --depth=1 https://github.com/${REPO} -b ${BRANCH} operator
14+
15+
# Modify the versions that are in-use to match our locally built images.
16+
pushd operator
17+
make build/_output/bin/gen-versions
18+
build/_output/bin/gen-versions -os-versions=../calico_versions.yml > pkg/components/calico.go
19+
20+
# Modify pull policy to be "Never".
21+
find . -name '*.go' | xargs sed -i 's/PullIfNotPresent/PullNever/g'
22+
23+
# Build an operator image for us to use and tag it with a local-only tag.
24+
make image
25+
docker tag tigera/operator:latest docker.io/tigera/operator:test-build
26+
27+
# Clean up after ourselves.
28+
popd
29+
rm -rf operator/
30+
set +e

0 commit comments

Comments
 (0)