boraxpr / k8s-starter

Quick start to k8s

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

k8s-starter

  1. Install.
    curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube_latest_amd64.deb
    sudo dpkg -i minikube_latest_amd64.deb

  2. Start the cluster.
    minikube start

  3. Access the cluster.
    minikube kubectl -- get po -A

  4. Connect the dashboard.
    minikube dashboard

  5. Open a proxy to allow remote connections to access k8s dashboard.
    kubectl proxy --address 0.0.0.0 --port=9000 --accept-hosts '.*'