An open API service indexing awesome lists of open source software.

https://github.com/nattatorn-dev/k8s-dashboard


https://github.com/nattatorn-dev/k8s-dashboard

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

## create serviceaccount

```
$ kubectl create serviceaccount cluster-admin-dashboard
$ kubectl create clusterrolebinding cluster-admin-dashboard \
--clusterrole=cluster-admin \
--serviceaccount=default:cluster-admin-dashboard
```

### Copy the token from the generated secret

```
$ kubectl get secret | grep cluster-admin-dashboard
cluster-admin-dashboard-token-6xm8l kubernetes.io/service-account-token 3 18m
$ kubectl describe secret cluster-admin-dashboard-token-tqqr8
```