Skip to content

Commit 1907600

Browse files
Bump minikube version to v1.34.0 and update related dependencies
1 parent a2656ec commit 1907600

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

bootstrap/install-driver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
VERSION="v1.33.0"
5+
VERSION="v1.34.0"
66

77
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]:-$0}"; )" &> /dev/null && pwd 2> /dev/null; )";
88

go.mod

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
module github.com/scott-the-programmer/terraform-provider-minikube
22

3-
go 1.22.0
4-
toolchain go1.22.9
3+
go 1.22.7
4+
5+
toolchain go1.23.3
56

67
require (
78
github.com/docker/machine v0.16.2

minikube/schema_cluster.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ var (
137137
Optional: true,
138138
ForceNew: true,
139139

140-
Default: "gcr.io/k8s-minikube/kicbase:v0.0.44@sha256:eb04641328b06c5c4a14f4348470e1046bbcf9c2cbc551486e343d3a49db557e",
140+
Default: "gcr.io/k8s-minikube/kicbase:v0.0.45@sha256:81df288595202a317b1a4dc2506ca2e4ed5f22373c19a441b88cfbf4b9867c85",
141141
},
142142

143143
"binary_mirror": {
@@ -598,7 +598,7 @@ var (
598598

599599
"kubernetes_version": {
600600
Type: schema.TypeString,
601-
Description: "The Kubernetes version that the minikube VM will use (ex: v1.2.3, 'stable' for v1.30.0, 'latest' for v1.30.0). Defaults to 'stable'.",
601+
Description: "The Kubernetes version that the minikube VM will use (ex: v1.2.3, 'stable' for v1.31.0, 'latest' for v1.31.0). Defaults to 'stable'.",
602602

603603
Optional: true,
604604
ForceNew: true,

minikube/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package version
22

33
const (
4-
Version = "v1.33.0" // matches k8s.io/minikube v1.33.0
4+
Version = "v1.34.0" // matches k8s.io/minikube v1.34.0
55
)

0 commit comments

Comments
 (0)