File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
content/en/docs/tasks/access-application-cluster Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -34,10 +34,18 @@ Dashboard also provides information on the state of Kubernetes resources in your
34
34
35
35
## Deploying the Dashboard UI
36
36
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
+
37
42
The Dashboard UI is not deployed by default. To deploy it, run the following command:
38
43
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
41
49
```
42
50
43
51
## Accessing the Dashboard UI
You can’t perform that action at this time.
0 commit comments