File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -149,6 +149,26 @@ kubectl get pods --namespace longhorn-system --watch
149
149
kubectl get storageclass
150
150
```
151
151
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
+
152
172
### Completed
153
173
154
174
That's it. You now have installed the necessary software to start experimenting with IOCs on Kubernetes.
You can’t perform that action at this time.
0 commit comments