From 1953f9310f4d8eca79eb4f67e98e5d833c5daf4c Mon Sep 17 00:00:00 2001 From: Priya Wadhwa Date: Wed, 2 Sep 2020 10:54:06 -0400 Subject: [PATCH] Increase preload version to v6 We upgraded the dashboard image in #9129, this will rebuild tarballs to include the latest version. This should also fix a small performance regression, where start time was increased by 25% on kvm2, probably becaues we were waiting for the new dashboard image to download. [PR bot comment](https://github.com/kubernetes/minikube/pull/9129#issuecomment-684035146) --- pkg/minikube/download/preload.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/minikube/download/preload.go b/pkg/minikube/download/preload.go index 67415ebff2ec..3e132a87248f 100644 --- a/pkg/minikube/download/preload.go +++ b/pkg/minikube/download/preload.go @@ -41,7 +41,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 = "v5" + PreloadVersion = "v6" // PreloadBucket is the name of the GCS bucket where preloaded volume tarballs exist PreloadBucket = "minikube-preloaded-volume-tarballs" )