Merge pull request #13167 from minikube-bot/auto_bump_kubeadm_constants

Bump kubeadm constants for kubernetes images
pull/13170/head
Medya Ghazizadeh 2021-12-14 13:54:12 -08:00 committed by GitHub
commit ed82194171
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 5 deletions

View File

@ -1002,6 +1002,7 @@ endif
update-kubeadm-constants:
(cd hack/update/kubeadm_constants && \
go run update_kubeadm_constants.go)
gofmt -w pkg/minikube/constants/constants_kubeadm_images.go
.PHONY: stress
stress: ## run the stress tests

View File

@ -18,13 +18,22 @@ package constants
var (
KubeadmImages = map[string]map[string]string{
"v1.24": {
"coredns/coredns": "v1.8.6",
"etcd": "3.5.1-0",
"kube-apiserver": "v1.23.0",
"kube-controller-manager": "v1.23.0",
"kube-proxy": "v1.23.0",
"kube-scheduler": "v1.23.0",
"pause": "3.6",
},
"v1.23": {
"coredns/coredns": "v1.8.6",
"etcd": "3.5.1-0",
"kube-apiserver": "v1.22.4",
"kube-controller-manager": "v1.22.4",
"kube-proxy": "v1.22.4",
"kube-scheduler": "v1.22.4",
"kube-apiserver": "v1.23.0",
"kube-controller-manager": "v1.23.0",
"kube-proxy": "v1.23.0",
"kube-scheduler": "v1.23.0",
"pause": "3.6",
},
"v1.22": {

View File

@ -44,7 +44,7 @@ const (
// PreloadVersion is the current version of the preloaded tarball
//
// NOTE: You may need to bump this version up when upgrading auxiliary docker images
PreloadVersion = "v15"
PreloadVersion = "v16"
// PreloadBucket is the name of the GCS bucket where preloaded volume tarballs exist
PreloadBucket = "minikube-preloaded-volume-tarballs"
)