We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 588ab7a commit 9061431Copy full SHA for 9061431
‎tools/make/kube.mk‎
@@ -31,6 +31,10 @@ create-cluster: ## Create a kind cluster with optimized configuration
31
exit 0; \
32
fi; \
33
fi
34
+ @if [ ! -f "$(KIND_CONFIG_FILE)" ]; then \
35
+ echo "$(YELLOW)[INFO]$(NC) Kind config not found: $(KIND_CONFIG_FILE). Generating..."; \
36
+ bash tools/kind/generate-kind-config.sh; \
37
+ fi
38
@echo "$(BLUE)[INFO]$(NC) Creating cluster with config: $(KIND_CONFIG_FILE)"
39
@mkdir -p /tmp/kind-semantic-router
40
@kind create cluster --name $(KIND_CLUSTER_NAME) --config $(KIND_CONFIG_FILE)
0 commit comments