Skip to content

Commit 18d80be

Browse files
committed
fix: update kubeadm images
1 parent 6830eeb commit 18d80be

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

pkg/minikube/constants/constants_kubeadm_images.go

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,19 @@ package constants
1818

1919
var (
2020
KubeadmImages = map[string]map[string]string{
21+
"v1.34.0-rc.1": {
22+
"coredns/coredns": "v1.12.1",
23+
"etcd": "3.6.4-0",
24+
"pause": "3.10.1",
25+
},
26+
"v1.34.0-rc.0": {
27+
"coredns/coredns": "v1.12.1",
28+
"etcd": "3.6.4-0",
29+
"pause": "3.10.1",
30+
},
2131
"v1.34.0-beta.0": {
2232
"coredns/coredns": "v1.12.1",
23-
"etcd": "3.5.21-0",
33+
"etcd": "3.6.1-1",
2434
"pause": "3.10",
2535
},
2636
"v1.33.3": {

pkg/minikube/constants/constants_kubernetes_versions.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ package constants
2121
// ValidKubernetesVersions is a list of Kubernetes versions in order from newest to oldest
2222
// This is used when outputting Kubernetes versions and to select the latest patch version when unspecified
2323
var ValidKubernetesVersions = []string{
24+
"v1.34.0-rc.1",
25+
"v1.34.0-rc.0",
2426
"v1.34.0-beta.0",
2527
"v1.34.0-alpha.3",
2628
"v1.34.0-alpha.2",

0 commit comments

Comments
 (0)