minikube 启动 - 多次
minikube start - multiple times
当我执行 minikube start
时,我得到:
Starting local Kubernetes v1.9.4 cluster...
Starting VM...
Getting VM IP address...
Moving files into cluster...
Setting up certs...
Connecting to cluster...
Setting up kubeconfig...
Starting cluster components...
Kubectl is now configured to use the cluster.
Loading cached images from config file.
但是,如果我再次这样做,我会得到相同的输出。
这是创建新集群、重新配置现有集群还是什么都不做?
minikube start
恢复 paused/stoped 的旧集群。
但是,如果您通过 minikube delete
删除 minikube machine
或从 virtualbox 中手动删除,minikube start
将在这种情况下创建一个新集群。
MINIKUBE is a lightweight kubernetes implementation that creates a VM on your
local machine.
and deploys a cluster containing only one NODE.
so basically MINIKUBE is the only NODE in the Kubernetes cluster.
任何多次启动 minikube 的尝试都只会创建一个节点。
$ kubectl get nodes
这个 return minikube 节点
但我遇到了这个 link,它提供了有关创建多个节点的信息 multi node cluster
当我执行 minikube start
时,我得到:
Starting local Kubernetes v1.9.4 cluster...
Starting VM...
Getting VM IP address...
Moving files into cluster...
Setting up certs...
Connecting to cluster...
Setting up kubeconfig...
Starting cluster components...
Kubectl is now configured to use the cluster.
Loading cached images from config file.
但是,如果我再次这样做,我会得到相同的输出。
这是创建新集群、重新配置现有集群还是什么都不做?
minikube start
恢复 paused/stoped 的旧集群。
但是,如果您通过 minikube delete
删除 minikube machine
或从 virtualbox 中手动删除,minikube start
将在这种情况下创建一个新集群。
MINIKUBE is a lightweight kubernetes implementation that creates a VM on your
local machine.
and deploys a cluster containing only one NODE.
so basically MINIKUBE is the only NODE in the Kubernetes cluster.
任何多次启动 minikube 的尝试都只会创建一个节点。
$ kubectl get nodes
这个 return minikube 节点
但我遇到了这个 link,它提供了有关创建多个节点的信息 multi node cluster