Skip to content

Commit

Permalink
upgrade k8s dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
andyli committed Jun 2, 2024
1 parent 3a29e93 commit 878996a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions do-k8s-dashboard.tf
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit 878996a

Please sign in to comment.