Skip to content

Instantly share code, notes, and snippets.

@namtx
Created August 11, 2020 03:59
Show Gist options
  • Save namtx/f70749755e5a466c66fd601d5d0320ec to your computer and use it in GitHub Desktop.
Save namtx/f70749755e5a466c66fd601d5d0320ec to your computer and use it in GitHub Desktop.
kubernetes dashboard admin rbac
apiVersion: v1
kind: ServiceAccount
metadata:
name: admin-user
namespace: kube-system
---
# Create ClusterRoleBinding
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: kube-system
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment