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
8 changes: 4 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"dockerfile": "Dockerfile",
"args": {
"TOOLS_GO_VERSION": "1.25",
"TOOLS_HELM_VERSION": "3.19.0",
"TOOLS_ISTIO_VERSION": "1.27.1",
"TOOLS_KUBECTL_VERSION": "1.34.1",
"TOOLS_ISTIO_VERSION": "1.28.3",
"TOOLS_ARGO_ROLLOUTS_VERSION": "1.8.3",
"TOOLS_CILIUM_VERSION": "0.18.7"
"TOOLS_KUBECTL_VERSION": "1.35.0",
"TOOLS_HELM_VERSION": "4.1.0",
"TOOLS_CILIUM_VERSION": "0.19.0"
}
},
"features": {
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '^1.25.5'
go-version: '^1.25.6'
cache: false

- name: Run cmd/main.go tests
Expand Down Expand Up @@ -87,11 +87,11 @@ jobs:
- name: Set up Helm
uses: azure/setup-helm@v4.2.0
with:
version: v3.17.0
version: v4.1.0

- name: Install unittest plugin
run: |
helm plugin install https://github.com/helm-unittest/helm-unittest
helm plugin install --verify=false https://github.com/helm-unittest/helm-unittest

- name: Chart init
run: |
Expand Down
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,11 @@ DOCKER_BUILDER ?= docker buildx
DOCKER_BUILD_ARGS ?= --pull --load --platform linux/$(LOCALARCH) --builder $(BUILDX_BUILDER_NAME)

# tools image build args
TOOLS_ISTIO_VERSION ?= 1.28.1
TOOLS_ISTIO_VERSION ?= 1.28.3
TOOLS_ARGO_ROLLOUTS_VERSION ?= 1.8.3
TOOLS_KUBECTL_VERSION ?= 1.34.2
TOOLS_HELM_VERSION ?= 3.19.0
TOOLS_CILIUM_VERSION ?= 0.18.9
TOOLS_KUBECTL_VERSION ?= 1.35.0
TOOLS_HELM_VERSION ?= 4.1.0
TOOLS_CILIUM_VERSION ?= 0.19.0

# build args
TOOLS_IMAGE_BUILD_ARGS = --build-arg VERSION=$(VERSION)
Expand Down Expand Up @@ -196,7 +196,7 @@ helm-publish: helm-version
.PHONY: helm-test
helm-test: helm-version
mkdir -p tmp
helm plugin ls | grep unittest || helm plugin install https://github.com/helm-unittest/helm-unittest.git
helm plugin ls | grep unittest || helm plugin install --verify=false https://github.com/helm-unittest/helm-unittest.git
helm unittest helm/kagent-tools

.PHONY: create-kind-cluster
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/kagent-dev/tools

go 1.25.5
go 1.25.6

require (
github.com/joho/godotenv v1.5.1
Expand Down