- Install vagrant-scp plugin
vagrant plugin install vagrant-scp
- Download required binaries
- Provision all (Infra + Bootstrap K8s Components)
- Approve all pending certificates
for csr in $(kubectl get csr | grep -i pending | awk '{ print $1 }'); do
kubectl certificate approve $csr
done
How to login to Kubernetes Dashboard
- Create a secure channel to your Kubernetes cluster
- Access K8s Dashboard At:
http://localhost:8001/api/v1/namespaces/kubernetes-dashboard/services/https:kubernetes-dashboard:/proxy/
- Create Bearer Token
kubectl -n kubernetes-dashboard create token admin-user
-
Copy & Paste it into the Enter token
field on the login screen
-
Click the Sign in button and that's it. You are now logged in as an admin.