Skip to content

Instantly share code, notes, and snippets.

@eumel8
Created April 24, 2023 16:11
Show Gist options
  • Save eumel8/a83509cf58e7b6bc5690331ebafd167a to your computer and use it in GitHub Desktop.
Save eumel8/a83509cf58e7b6bc5690331ebafd167a to your computer and use it in GitHub Desktop.
kubernetes-dashboard install
apiVersion: v1
kind: ServiceAccount
metadata:
name: admin-user
namespace: kubernetes-dashboard
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: admin-user
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: cluster-admin
subjects:
- kind: ServiceAccount
name: admin-user
namespace: kubernetes-dashboard
# kubectl -n kubernetes-dashboard create token admin-user
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment