Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tools/make/kube.mk
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ create-cluster: ## Create a kind cluster with optimized configuration
exit 0; \
fi; \
fi
@if [ ! -f "$(KIND_CONFIG_FILE)" ]; then \
echo "$(YELLOW)[INFO]$(NC) Kind config not found: $(KIND_CONFIG_FILE). Generating..."; \
bash tools/kind/generate-kind-config.sh; \
fi
@echo "$(BLUE)[INFO]$(NC) Creating cluster with config: $(KIND_CONFIG_FILE)"
@mkdir -p /tmp/kind-semantic-router
@kind create cluster --name $(KIND_CLUSTER_NAME) --config $(KIND_CONFIG_FILE)
Expand Down
Loading