Skip to content

Commit a47a9db

Browse files
committed
updated dependencies
1 parent d46856d commit a47a9db

6 files changed

Lines changed: 530 additions & 241 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG TOOLS_GO_VERSION
2-
FROM mcr.microsoft.com/devcontainers/go:1-${TOOLS_GO_VERSION}-bookworm
2+
FROM mcr.microsoft.com/devcontainers/go:dev-${TOOLS_GO_VERSION}-bookworm
33

44
RUN apt-get update && apt-get install -y --no-install-recommends \
55
ca-certificates \

.devcontainer/devcontainer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"build": {
44
"dockerfile": "Dockerfile",
55
"args": {
6-
"TOOLS_GO_VERSION": "1.24",
7-
"TOOLS_HELM_VERSION": "3.18.3",
8-
"TOOLS_ISTIO_VERSION": "1.26.2",
9-
"TOOLS_KUBECTL_VERSION": "1.33.2",
6+
"TOOLS_GO_VERSION": "1.25",
7+
"TOOLS_HELM_VERSION": "3.19.0",
8+
"TOOLS_ISTIO_VERSION": "1.27.1",
9+
"TOOLS_KUBECTL_VERSION": "1.34.1",
1010
"TOOLS_ARGO_ROLLOUTS_VERSION": "1.8.3",
11-
"TOOLS_CILIUM_VERSION": "0.18.5"
11+
"TOOLS_CILIUM_VERSION": "0.18.7"
1212
}
1313
},
1414
"features": {
@@ -49,7 +49,7 @@
4949
"forwardPorts": [8084],
5050

5151
//network
52-
"network": "host",
52+
// "network": "host",
5353

5454
//mount docker directly on the host
5555
"mounts": ["source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"],

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ HELM_REPO ?= oci://ghcr.io/kagent-dev
77
HELM_ACTION=upgrade --install
88

99
KIND_CLUSTER_NAME ?= kagent
10-
KIND_IMAGE_VERSION ?= 1.33.1
10+
KIND_IMAGE_VERSION ?= 1.34.0
1111
KIND_CREATE_CMD ?= "kind create cluster --name $(KIND_CLUSTER_NAME) --image kindest/node:v$(KIND_IMAGE_VERSION) --config ./scripts/kind/kind-config.yaml"
1212

1313
BUILD_DATE := $(shell date -u '+%Y-%m-%d')
@@ -136,11 +136,11 @@ DOCKER_BUILDER ?= docker buildx
136136
DOCKER_BUILD_ARGS ?= --pull --load --platform linux/$(LOCALARCH) --builder $(BUILDX_BUILDER_NAME)
137137

138138
# tools image build args
139-
TOOLS_ISTIO_VERSION ?= 1.26.2
139+
TOOLS_ISTIO_VERSION ?= 1.27.1
140140
TOOLS_ARGO_ROLLOUTS_VERSION ?= 1.8.3
141-
TOOLS_KUBECTL_VERSION ?= 1.33.3
142-
TOOLS_HELM_VERSION ?= 3.18.4
143-
TOOLS_CILIUM_VERSION ?= 0.18.5
141+
TOOLS_KUBECTL_VERSION ?= 1.34.1
142+
TOOLS_HELM_VERSION ?= 3.19.0
143+
TOOLS_CILIUM_VERSION ?= 0.18.7
144144

145145
# build args
146146
TOOLS_IMAGE_BUILD_ARGS = --build-arg VERSION=$(VERSION)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ curl -sL https://raw.githubusercontent.com/kagent-dev/tools/refs/heads/main/scri
3535
- **Docker:**
3636

3737
```bash
38-
docker run -it --rm -p 8084:8084 ghcr.io/kagent-dev/kagent/tools:0.0.11
38+
docker run -it --rm -p 8084:8084 ghcr.io/kagent-dev/kagent/tools:0.0.12
3939
```
4040

4141
- **Kubernetes**
4242

4343
```bash
44-
helm upgrade -i -n kagent --create-namespace kagent-tools oci://ghcr.io/kagent-dev/tools/helm/kagent-tools --version 0.0.11
44+
helm upgrade -i -n kagent --create-namespace kagent-tools oci://ghcr.io/kagent-dev/tools/helm/kagent-tools --version 0.0.12
4545
helm ls -A
4646
```
4747

go.mod

Lines changed: 41 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,93 +1,63 @@
11
module github.com/kagent-dev/tools
22

3-
go 1.24.5
3+
go 1.25.1
44

55
require (
66
github.com/joho/godotenv v1.5.1
7-
github.com/mark3labs/mcp-go v0.32.0
8-
github.com/onsi/ginkgo/v2 v2.23.4
9-
github.com/onsi/gomega v1.37.0
10-
github.com/spf13/cobra v1.9.1
11-
github.com/stretchr/testify v1.10.0
12-
github.com/testcontainers/testcontainers-go v0.38.0
7+
github.com/mark3labs/mcp-go v0.40.0
8+
github.com/onsi/ginkgo/v2 v2.25.3
9+
github.com/onsi/gomega v1.38.2
10+
github.com/spf13/cobra v1.10.1
11+
github.com/stretchr/testify v1.11.1
1312
github.com/tmc/langchaingo v0.1.13
14-
go.opentelemetry.io/otel v1.37.0
15-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.37.0
16-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.34.0
17-
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.34.0
18-
go.opentelemetry.io/otel/metric v1.37.0
19-
go.opentelemetry.io/otel/sdk v1.37.0
20-
go.opentelemetry.io/otel/trace v1.37.0
13+
go.opentelemetry.io/otel v1.38.0
14+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.38.0
15+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.38.0
16+
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.38.0
17+
go.opentelemetry.io/otel/metric v1.38.0
18+
go.opentelemetry.io/otel/sdk v1.38.0
19+
go.opentelemetry.io/otel/trace v1.38.0
2120
)
2221

2322
require (
24-
dario.cat/mergo v1.0.1 // indirect
25-
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
26-
github.com/Microsoft/go-winio v0.6.2 // indirect
27-
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
28-
github.com/cenkalti/backoff/v5 v5.0.2 // indirect
29-
github.com/containerd/errdefs v1.0.0 // indirect
30-
github.com/containerd/errdefs/pkg v0.3.0 // indirect
31-
github.com/containerd/log v0.1.0 // indirect
32-
github.com/containerd/platforms v0.2.1 // indirect
33-
github.com/cpuguy83/dockercfg v0.3.2 // indirect
23+
github.com/Masterminds/semver/v3 v3.4.0 // indirect
24+
github.com/bahlo/generic-list-go v0.2.0 // indirect
25+
github.com/buger/jsonparser v1.1.1 // indirect
26+
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
27+
github.com/chzyer/readline v1.5.1 // indirect
3428
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
35-
github.com/distribution/reference v0.6.0 // indirect
3629
github.com/dlclark/regexp2 v1.10.0 // indirect
37-
github.com/docker/docker v28.2.2+incompatible // indirect
38-
github.com/docker/go-connections v0.5.0 // indirect
39-
github.com/docker/go-units v0.5.0 // indirect
40-
github.com/ebitengine/purego v0.8.4 // indirect
41-
github.com/felixge/httpsnoop v1.0.4 // indirect
4230
github.com/go-logr/logr v1.4.3 // indirect
4331
github.com/go-logr/stdr v1.2.2 // indirect
44-
github.com/go-ole/go-ole v1.2.6 // indirect
4532
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
46-
github.com/gogo/protobuf v1.3.2 // indirect
4733
github.com/google/go-cmp v0.7.0 // indirect
48-
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
34+
github.com/google/pprof v0.0.0-20250923004556-9e5a51aed1e8 // indirect
4935
github.com/google/uuid v1.6.0 // indirect
50-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1 // indirect
36+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 // indirect
37+
github.com/ianlancetaylor/demangle v0.0.0-20250417193237-f615e6bd150b // indirect
5138
github.com/inconshreveable/mousetrap v1.1.0 // indirect
52-
github.com/klauspost/compress v1.18.0 // indirect
53-
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
54-
github.com/magiconair/properties v1.8.10 // indirect
55-
github.com/moby/docker-image-spec v1.3.1 // indirect
56-
github.com/moby/go-archive v0.1.0 // indirect
57-
github.com/moby/patternmatcher v0.6.0 // indirect
58-
github.com/moby/sys/sequential v0.6.0 // indirect
59-
github.com/moby/sys/user v0.4.0 // indirect
60-
github.com/moby/sys/userns v0.1.0 // indirect
61-
github.com/moby/term v0.5.0 // indirect
62-
github.com/morikuni/aec v1.0.0 // indirect
63-
github.com/opencontainers/go-digest v1.0.0 // indirect
64-
github.com/opencontainers/image-spec v1.1.1 // indirect
65-
github.com/pkg/errors v0.9.1 // indirect
66-
github.com/pkoukk/tiktoken-go v0.1.6 // indirect
39+
github.com/invopop/jsonschema v0.13.0 // indirect
40+
github.com/mailru/easyjson v0.9.1 // indirect
41+
github.com/pkoukk/tiktoken-go v0.1.8 // indirect
6742
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
68-
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
69-
github.com/shirou/gopsutil/v4 v4.25.5 // indirect
70-
github.com/sirupsen/logrus v1.9.3 // indirect
71-
github.com/spf13/cast v1.9.2 // indirect
72-
github.com/spf13/pflag v1.0.6 // indirect
73-
github.com/tklauser/go-sysconf v0.3.12 // indirect
74-
github.com/tklauser/numcpus v0.6.1 // indirect
43+
github.com/spf13/cast v1.10.0 // indirect
44+
github.com/spf13/pflag v1.0.10 // indirect
45+
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
7546
github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
76-
github.com/yusufpapurcu/wmi v1.2.4 // indirect
77-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
78-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.51.0 // indirect
79-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.37.0 // indirect
80-
go.opentelemetry.io/proto/otlp v1.7.0 // indirect
47+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
48+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.38.0 // indirect
49+
go.opentelemetry.io/proto/otlp v1.8.0 // indirect
8150
go.uber.org/automaxprocs v1.6.0 // indirect
82-
golang.org/x/crypto v0.39.0 // indirect
83-
golang.org/x/net v0.41.0 // indirect
84-
golang.org/x/sys v0.33.0 // indirect
85-
golang.org/x/text v0.26.0 // indirect
86-
golang.org/x/tools v0.33.0 // indirect
87-
google.golang.org/genproto/googleapis/api v0.0.0-20250603155806-513f23925822 // indirect
88-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 // indirect
89-
google.golang.org/grpc v1.73.0 // indirect
90-
google.golang.org/protobuf v1.36.6 // indirect
51+
go.yaml.in/yaml/v2 v2.4.3 // indirect
52+
go.yaml.in/yaml/v3 v3.0.4 // indirect
53+
golang.org/x/net v0.44.0 // indirect
54+
golang.org/x/sys v0.36.0 // indirect
55+
golang.org/x/text v0.29.0 // indirect
56+
golang.org/x/tools v0.37.0 // indirect
57+
google.golang.org/genproto/googleapis/api v0.0.0-20250922171735-9219d122eba9 // indirect
58+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250922171735-9219d122eba9 // indirect
59+
google.golang.org/grpc v1.75.1 // indirect
60+
google.golang.org/protobuf v1.36.9 // indirect
9161
gopkg.in/yaml.v3 v3.0.1 // indirect
92-
sigs.k8s.io/yaml v1.4.0 // indirect
62+
sigs.k8s.io/yaml v1.6.0 // indirect
9363
)

0 commit comments

Comments
 (0)