Skip to content

Commit f48cc23

Browse files
Fix cluster teardown
1 parent e8043a5 commit f48cc23

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib.Makefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -1304,7 +1304,11 @@ $(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
1311+
-$(KUBECTL) --kubeconfig=$(KIND_KUBECONFIG) drain kind-control-plane kind-worker kind-worker2 kind-worker3 --ignore-daemonsets --force
13081312
-$(KIND) delete cluster --name $(KIND_NAME)
13091313
rm -f $(KIND_KUBECONFIG)
13101314
rm -f $(REPO_ROOT)/.$(KIND_NAME).created

0 commit comments

Comments
 (0)