From 878996ac30084b224a0f23a7ea988bac4c33ade2 Mon Sep 17 00:00:00 2001 From: Andy Li Date: Sun, 2 Jun 2024 04:06:41 +0100 Subject: [PATCH] upgrade k8s dashboard --- do-k8s-dashboard.tf | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/do-k8s-dashboard.tf b/do-k8s-dashboard.tf index ee23467..454dc9e 100644 --- a/do-k8s-dashboard.tf +++ b/do-k8s-dashboard.tf @@ -1,11 +1,14 @@ -# https://github.com/kubernetes/dashboard/tree/master/charts/helm-chart/kubernetes-dashboard +# https://github.com/kubernetes/dashboard/tree/dfd20b42444fce5e8f739385e04c8c5b7adfcebf/charts/helm-chart/kubernetes-dashboard resource "helm_release" "do-k8s-dashboard" { provider = helm.do name = "k8s-dashboard" repository = "https://kubernetes.github.io/dashboard/" chart = "kubernetes-dashboard" - version = "6.0.0" + + # We can't upgrade to 7.0.0+ because there are breaking changes in the way authentication is handled. + # https://github.com/kubernetes/dashboard/releases/tag/kubernetes-dashboard-7.0.0 + version = "6.0.8" values = [yamlencode({ "protocolHttp" : true,