Merge pull request #6039 from tstromberg/kub-dash

Update dashboard to 2.0.0b8 and pre-cache it again
pull/6042/head
Thomas Strömberg 2019-12-09 17:16:12 -08:00 committed by GitHub
commit 2063ffda8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -89,7 +89,8 @@ spec:
spec:
containers:
- name: kubernetes-dashboard
image: kubernetesui/dashboard:v2.0.0-beta6
# WARNING: This must match pkg/minikube/bootstrapper/images/images.go
image: kubernetesui/dashboard:v2.0.0-beta8
ports:
- containerPort: 9090
protocol: TCP

View File

@ -144,6 +144,8 @@ func CachedImages(imageRepositoryStr string, kubernetesVersionStr string) []stri
}
images = append(images, []string{
// This must match deploy/addons/dashboard/dashboard-dp.yaml
"kubernetesui/dashboard:v2.0.0-beta8",
imageRepository + "kube-addon-manager" + ArchTag(false) + "v9.0",
minikubeRepository + "storage-provisioner" + ArchTag(false) + "v1.8.1",
}...)