Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ LDFLAGS := -X github.com/kagent-dev/tools/internal/version.Version=$(VERSION) -X

## Location to install dependencies to
LOCALBIN ?= $(shell pwd)/bin
PATH := $HOME/local/bin:/opt/homebrew/bin/:$(LOCALBIN):$(PATH)
PATH := $(HOME)/local/bin:/opt/homebrew/bin/:$(LOCALBIN):$(PATH)
HELM_DIST_FOLDER ?= $(shell pwd)/dist

.PHONY: clean
Expand Down Expand Up @@ -214,10 +214,10 @@ otel-local:

.PHONY: tools-install
tools-install: clean
mkdir -p $HOME/.local/bin
mkdir -p $(HOME)/.local/bin
go build -ldflags "$(LDFLAGS)" -o $(LOCALBIN)/kagent-tools ./cmd
go build -ldflags "$(LDFLAGS)" -o $(HOME)/.local/bin/kagent-tools ./cmd
$HOME/.local/bin/kagent-tools --version
$(HOME)/.local/bin/kagent-tools --version

.PHONY: run-agentgateway
run-agentgateway: tools-install
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ curl -sL https://raw.githubusercontent.com/kagent-dev/tools/refs/heads/main/scri
- **Docker:**

```bash
docker run -it --rm -p 8084:8084 ghcr.io/kagent-dev/kagent/tools:0.0.10
docker run -it --rm -p 8084:8084 ghcr.io/kagent-dev/kagent/tools:0.0.11
```

- **Kubernetes**

```bash
helm upgrade -i -n kagent --create-namespace kagent-tools oci://ghcr.io/kagent-dev/tools/helm/kagent-tools --version 0.0.10
helm upgrade -i -n kagent --create-namespace kagent-tools oci://ghcr.io/kagent-dev/tools/helm/kagent-tools --version 0.0.11
helm ls -A
```

Expand Down