Update web-ui-dashboard.md
parent
1d8cfb08dc
commit
6eec18bddc
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue