Skip to content

Instantly share code, notes, and snippets.

@PascalKu
Last active August 14, 2019 16:45
Show Gist options
  • Save PascalKu/f41d4dde5f0fe16ee83d51f67deda17c to your computer and use it in GitHub Desktop.
Save PascalKu/f41d4dde5f0fe16ee83d51f67deda17c to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: ServiceAccount
metadata:
name: admin-user
namespace: kube-system
---
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
@PascalKu
Copy link
Author

PascalKu commented Aug 14, 2019

kubectl -n kube-system describe secret $(kubectl -n kube-system get secret | grep admin-user | awk '{print $1}')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment