Skip to content

Instantly share code, notes, and snippets.

@dshimy
Created March 14, 2018 22:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dshimy/7bbede8943dba9358766e5238bb61055 to your computer and use it in GitHub Desktop.
Save dshimy/7bbede8943dba9358766e5238bb61055 to your computer and use it in GitHub Desktop.
Drop security in K8S dashboard
#!/bin/bash
cat <<EOF | kubectl create -f -
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRoleBinding
metadata:
name: kubernetes-dashboard
labels:
k8s-app: kubernetes-dashboard
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: cluster-admin
subjects:
- kind: ServiceAccount
name: kubernetes-dashboard
namespace: kube-system
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment