En https://github.com/kubernetes-sigs/kind curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/v0.5.1/kind-$(uname)-amd64 chmod +x ./kind ./kind create cluster --name prueba ./kind delete cluster --name prueba curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl chmod +x kubectl export KUBECONFIG="$(./kind get kubeconfig-path --name="prueba")" ./kubectl cluster-info # Dashboard ./kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/master/src/deploy/recommended/kubernetes-dashboard.yaml ./kubectl proxy https://kind.sigs.k8s.io/docs/user/quick-start/