Skip to content

Instantly share code, notes, and snippets.

@CJavierSaldana
Last active March 22, 2023 00:23
Show Gist options
  • Save CJavierSaldana/22e2597b69d3f0273ef6a114c0c21678 to your computer and use it in GitHub Desktop.
Save CJavierSaldana/22e2597b69d3f0273ef6a114c0c21678 to your computer and use it in GitHub Desktop.
Create Kubernetes Dashboard Admin
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment