Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dallasmarlow/f1239600334ad725164d7cd3565fd84f to your computer and use it in GitHub Desktop.
Save dallasmarlow/f1239600334ad725164d7cd3565fd84f to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
cat > eks-admin-service-account.yml << EOL
apiVersion: v1
kind: ServiceAccount
metadata:
name: eks-admin
namespace: kube-system
---
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRoleBinding
metadata:
name: eks-admin
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: cluster-admin
subjects:
- kind: ServiceAccount
name: eks-admin
namespace: kube-system
EOL
kubectl apply -f eks-admin-service-account.yml
kubectl -n kube-system describe secret "$(kubectl -n kube-system get secret | grep eks-admin | awk '{print $1}')"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment