美文网首页
minikube 基本操作

minikube 基本操作

作者: 土豆特别想爬山 | 来源:发表于2021-06-10 19:15 被阅读0次

    To install minikube on x86-64 macOS using binary download:

    curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-darwin-amd64
    sudo install minikube-darwin-amd64 /usr/local/bin/minikube
    

    Basic controls

    See minikube in action!
    Start a cluster by running:
    minikube start
    Access the Kubernetes Dashboard running within the minikube cluster:
    minikube dashboard
    Once started, you can interact with your cluster using kubectl, just like any other Kubernetes cluster. For instance, starting a server:
    kubectl create deployment hello-minikube --image=k8s.gcr.io/echoserver:1.4
    Exposing a service as a NodePort
    kubectl expose deployment hello-minikube --type=NodePort --port=8080
    minikube makes it easy to open this exposed endpoint in your browser:
    minikube service hello-minikube
    Upgrade your cluster:
    minikube start --kubernetes-version=latest
    Start a second local cluster (note: This will not work if minikube is using the bare-metal/none driver):
    minikube start -p cluster2
    Stop your local cluster:
    minikube stop
    Delete your local cluster:
    minikube delete
    Delete all local clusters and profiles
    minikube delete --all

    参考:https://minikube.sigs.k8s.io/docs/handbook/controls/

    相关文章

      网友评论

          本文标题:minikube 基本操作

          本文链接:https://www.haomeiwen.com/subject/xycosltx.html