You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -290,13 +290,13 @@ run-kcp: install-kcp
290
290
$(KCP) start --bind-address=127.0.0.1
291
291
292
292
.PHONY: run-kcp-infra
293
-
run-kcp-infra: install-kcp $(DEX_BINARY)## Run KCP infrastructure for e2e tests (blocking)
293
+
run-kcp-infra: install-kcp $(DEX_BINARY)## Run kcp infrastructure for e2e tests (blocking)
294
294
mkdir -p .kcp
295
295
$(MAKE) run-dex 2>&1& DEX_PID=$$!;\
296
296
$(MAKE) run-kcp &>.kcp/kcp.log & KCP_PID=$$!;\
297
297
trap'kill -TERM $$DEX_PID $$KCP_PID; rm -rf .kcp' TERM INT EXIT &&\
298
298
echo"Waiting for kcp to be ready (check .kcp/kcp.log)."&&while! KUBECONFIG=.kcp/admin.kubeconfig kubectl get --raw /readyz &>/dev/null;do sleep 1;echo -n ".";done&&echo&&\
299
-
echo"KCP is ready. Press Ctrl+C to stop."&&\
299
+
echo"kcp is ready. Press Ctrl+C to stop."&&\
300
300
wait$$KCP_PID
301
301
302
302
.PHONY: test-e2e-only
@@ -306,7 +306,7 @@ endif
306
306
test-e2e-only: TEST_ARGS ?=
307
307
test-e2e-only: WORK_DIR ?= .
308
308
test-e2e-only: WHAT ?= ./test/e2e...
309
-
test-e2e-only: build ## Run e2e tests against existing KCP infrastructure
309
+
test-e2e-only: build ## Run e2e tests against existing kcp infrastructure
0 commit comments