Skip to content

Commit

Permalink
Bump kind version to v0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fjammes committed Sep 10, 2024
1 parent 9b0836c commit 0cd3c4c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/install_kind.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import (
"github.com/spf13/cobra"
)

const kindDefaultVersion = "v0.24.0"

var kindVersion string

type KindInstallConfig struct {
Expand Down Expand Up @@ -44,5 +46,5 @@ var kindCmd = &cobra.Command{
func init() {
installCmd.AddCommand(kindCmd)

kindCmd.Flags().StringVar(&kindVersion, "kind-version", "v0.23.0", "Kind version to install")
kindCmd.Flags().StringVar(&kindVersion, "kind-version", kindDefaultVersion, "Kind version to install")
}

0 comments on commit 0cd3c4c

Please sign in to comment.