We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5be9c27 commit b1d0bd6Copy full SHA for b1d0bd6
Makefile
@@ -86,7 +86,7 @@ build:
86
run: docker-build
87
@echo "Running tool server on http://localhost:8084/mcp ..."
88
@echo "Use: npx @modelcontextprotocol/inspector to connect to the tool server"
89
- @docker run --rm -p 8084:8084 -e KAGENT_TOOLS_PORT=8084 $(TOOLS_IMG)
+ @docker run --rm --net=host -p 8084:8084 -e OPENAI_API_KEY=$(OPENAI_API_KEY) -v $(HOME)/.kube:/home/nonroot/.kube -e KAGENT_TOOLS_PORT=8084 $(TOOLS_IMG) -- --kubeconfig /root/.kube/config
90
91
PHONY: retag
92
retag: docker-build
0 commit comments