Skip to content

Commit 6af388f

Browse files
fix(benchmark): use $(CONTAINER_TOOL) instead of hardcoded docker in benchmark-local (llm-d#539)
Signed-off-by: Madhu Goutham Reddy Ambati <mambati@redhat.com> Co-authored-by: Lior Aronovich <243445518+lioraron@users.noreply.github.com>
1 parent 975df6a commit 6af388f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ BENCHMARK_RESULTS_DIR ?= benchmarks/results/local-run
356356
benchmark-local:
357357
@kind get clusters 2>/dev/null | grep -q $(KIND_CLUSTER_NAME) || \
358358
{ echo "ERROR: Kind cluster '$(KIND_CLUSTER_NAME)' not found. Run 'make dev-deploy' first."; exit 1; }
359-
@docker exec $(KIND_CLUSTER_NAME)-control-plane crictl images 2>/dev/null | grep -q batch-gateway-apiserver || \
359+
@$(CONTAINER_TOOL) exec $(KIND_CLUSTER_NAME)-control-plane crictl images 2>/dev/null | grep -q batch-gateway-apiserver || \
360360
{ echo "ERROR: batch-gateway images not loaded in Kind. Run 'make dev-deploy' first."; exit 1; }
361361
@echo "=== Benchmark local e2e (MODE=sim, scenario $(BENCHMARK_SCENARIO)) ==="
362362
@echo "Step 1/4: Setting up infrastructure..."

0 commit comments

Comments
 (0)