Skip to content

Instantly share code, notes, and snippets.

@wrasdf
Created September 10, 2018 03:56
Show Gist options
  • Save wrasdf/aae7a7af25ea9ccee456d268786ae506 to your computer and use it in GitHub Desktop.
Save wrasdf/aae7a7af25ea9ccee456d268786ae506 to your computer and use it in GitHub Desktop.
Create a dashboard for Kubernetes
#!/bin/bash
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v1.8.3/src/deploy/recommended/kubernetes-dashboard.yaml
cat <<EOF | kubectl apply -f -
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: kubernetes-dashboard
namespace: kube-system
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1beta1
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
TKN_SCRT=`kubectl get secret -n kube-system -o name|grep kubernetes-dashboard-token`
kubectl describe -n kube-system $TKN_SCRT|grep token:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment