Skip to content
Draft
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
22 changes: 18 additions & 4 deletions .github/workflows/kind-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,25 @@ concurrency:
jobs:
run-tests:
runs-on: ubuntu-latest
env:
KIND_CLUSTER_NAME: kinder
K8S_VERSION: v1.34.0
steps:
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1
with:
cluster_name: kinder
- name: Install kind
run: |
KIND_VERSION="v0.30.0"
curl -Lo ./kind https://kind.sigs.k8s.io/dl/${KIND_VERSION}/kind-linux-amd64
chmod +x ./kind
sudo mv ./kind /usr/local/bin/kind
kind --version
- name: Create Kind Cluster
run: |
kind create cluster --name $KIND_CLUSTER_NAME --image kindest/node:${K8S_VERSION}
- name: Verify kind and k8s version
run: |
kind version
kubectl version
kubectl cluster-info --context kind-kinder
- uses: actions/checkout@v4
with:
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.23.8 AS deps
FROM --platform=$BUILDPLATFORM golang:1.24.6 AS deps

ARG TARGETOS TARGETARCH KCTRL_VER=development
WORKDIR /workspace
Expand Down
2 changes: 1 addition & 1 deletion cli/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module carvel.dev/kapp-controller/cli

go 1.23.8
go 1.24.6

require (
carvel.dev/kapp-controller v0.57.0
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 carvel.dev/kapp-controller

go 1.23.8
go 1.24.6

require (
carvel.dev/vendir v0.44.0
Expand Down
Loading