Created
September 10, 2018 03:56
-
-
Save wrasdf/aae7a7af25ea9ccee456d268786ae506 to your computer and use it in GitHub Desktop.
Create a dashboard for Kubernetes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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