Skip to content

Commit 6eec18b

Browse files
authored
Update web-ui-dashboard.md
1 parent 1d8cfb0 commit 6eec18b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,16 @@ 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 and gives us better control over all dependencies required by Dashboard to run.
39+
3740
The Dashboard UI is not deployed by default. To deploy it, run the following command:
3841

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

4349
## Accessing the Dashboard UI

0 commit comments

Comments
 (0)