Skip to content

Commit 97d1b81

Browse files
authored
Merge pull request #45775 from tuladhar/helm-deploy-dashboard
Update Kubernetes Dashboard deployment to Helm-based installation
2 parents 8d0110b + 6c409b3 commit 97d1b81

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

content/en/docs/tasks/access-application-cluster/web-ui-dashboard.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,18 @@ Dashboard also provides information on the state of Kubernetes resources in your
3434

3535
## Deploying the Dashboard UI
3636

37+
{{< note >}}
38+
Kubernetes Dashboard supports only Helm-based installation currently as it is faster
39+
and gives us better control over all dependencies required by Dashboard to run.
40+
{{< /note >}}
41+
3742
The Dashboard UI is not deployed by default. To deploy it, run the following command:
3843

39-
```
40-
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.7.0/aio/deploy/recommended.yaml
44+
```shell
45+
# Add kubernetes-dashboard repository
46+
helm repo add kubernetes-dashboard https://kubernetes.github.io/dashboard/
47+
# Deploy a Helm Release named "kubernetes-dashboard" using the kubernetes-dashboard chart
48+
helm upgrade --install kubernetes-dashboard kubernetes-dashboard/kubernetes-dashboard --create-namespace --namespace kubernetes-dashboard
4149
```
4250

4351
## Accessing the Dashboard UI

0 commit comments

Comments
 (0)