Skip to content

Commit e0b0bd6

Browse files
authored
Merge pull request #156 from epics-containers/k8s-dashboard
Add k8s dashboard
2 parents 2522780 + b59b70c commit e0b0bd6

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

docs/tutorials/setup_k8s.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,26 @@ kubectl get pods --namespace longhorn-system --watch
149149
kubectl get storageclass
150150
```
151151

152+
### Set up k8s dashboard
153+
154+
The Kubernetes dashboard is a web-based Kubernetes user interface.
155+
As per <https://kubernetes.io/docs/tasks/access-application-cluster/web-ui-dashboard/> it can be installed into the cluster as follows:
156+
157+
```
158+
helm repo add kubernetes-dashboard https://kubernetes.github.io/dashboard/
159+
helm upgrade --install kubernetes-dashboard kubernetes-dashboard/kubernetes-dashboard --create-namespace --namespace kubernetes-dashboard
160+
```
161+
162+
To access the gui through a browser on `https://localhost:8080/`:
163+
```
164+
kubectl -n kubernetes-dashboard port-forward svc/kubernetes-dashboard-kong-proxy 8080:443
165+
```
166+
167+
To generate a bearer token:
168+
```
169+
kubectl create token default
170+
```
171+
152172
### Completed
153173

154174
That's it. You now have installed the necessary software to start experimenting with IOCs on Kubernetes.

0 commit comments

Comments
 (0)