Skip to content

Commit

Permalink
fix(makefile): avoid race condition for local kind cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
prometherion committed Nov 19, 2022
1 parent 4a7f964 commit 3391da1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ e2e/%: ginkgo
$(MAKE) e2e-build/$* && $(MAKE) e2e-exec || $(MAKE) e2e-destroy

e2e-build/%:
kind create cluster --name capsule --image=kindest/node:$*
kind create cluster --wait=60s --name capsule --image=kindest/node:$*
make docker-build
kind load docker-image --nodes capsule-control-plane --name capsule $(IMG)
helm upgrade \
Expand All @@ -247,4 +247,3 @@ e2e-exec:

e2e-destroy:
kind delete cluster --name capsule

0 comments on commit 3391da1

Please sign in to comment.