Update web-ui-dashboard.md

pull/45775/head
Puru 2024-04-05 00:30:58 +05:45 committed by GitHub
parent 1d8cfb08dc
commit 6eec18bddc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 1 deletions

View File

@ -34,10 +34,16 @@ Dashboard also provides information on the state of Kubernetes resources in your
## Deploying the Dashboard UI
> [!NOTE]
> 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.
The Dashboard UI is not deployed by default. To deploy it, run the following command:
```
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.7.0/aio/deploy/recommended.yaml
# Add kubernetes-dashboard repository
helm repo add kubernetes-dashboard https://kubernetes.github.io/dashboard/
# Deploy a Helm Release named "kubernetes-dashboard" using the kubernetes-dashboard chart
helm upgrade --install kubernetes-dashboard kubernetes-dashboard/kubernetes-dashboard --create-namespace --namespace kubernetes-dashboard
```
## Accessing the Dashboard UI