From 66ec23fd0c85a09c99ec3eb43f602e989dc3a364 Mon Sep 17 00:00:00 2001 From: Cole Snodgrass Date: Thu, 5 Sep 2024 11:17:30 -0700 Subject: [PATCH] update kind node; 1.29.4 -> 1.29.8 --- internal/cmd/local/k8s/cluster.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/cmd/local/k8s/cluster.go b/internal/cmd/local/k8s/cluster.go index 8537285..a45af4c 100644 --- a/internal/cmd/local/k8s/cluster.go +++ b/internal/cmd/local/k8s/cluster.go @@ -44,8 +44,8 @@ type kindCluster struct { // k8sVersion is the kind node version being used. // Note that the sha256 must match the version listed on the release for the specific version of kind -// that we're currently using (e.g. https://github.com/kubernetes-sigs/kind/releases/tag/v0.23.0) -const k8sVersion = "v1.29.4@sha256:3abb816a5b1061fb15c6e9e60856ec40d56b7b52bcea5f5f1350bc6e2320b6f8" +// that we're currently using (e.g. https://github.com/kubernetes-sigs/kind/releases/tag/v0.24.0) +const k8sVersion = "v1.29.8@sha256:d46b7aa29567e93b27f7531d258c372e829d7224b25e3fc6ffdefed12476d3aa" func (k *kindCluster) Create(port int, extraMounts []ExtraVolumeMount) error { // Create the data directory before the cluster does to ensure that it's owned by the correct user. @@ -107,4 +107,4 @@ func formatKindErr(err error) error { return fmt.Errorf("%w: %s", err, string(kindErr.Output)) } return err -} \ No newline at end of file +}