← 返回命令列表

Linux command

minikube-start 命令

文件

复制后可按需替换文件名、目录或参数。

常用示例

Start minikube cluster

minikube start

Start with specific driver

minikube start --driver=[docker]

Start with specific Kubernetes version

minikube start --kubernetes-version=[v1.28.0]

Start with more resources

minikube start --cpus=[4] --memory=[8192]

Start with specific profile

minikube start -p [profile-name]

说明

minikube start starts a local Kubernetes cluster. Creates a VM or container running Kubernetes. Default driver depends on platform. Supports multiple profiles for different clusters.

参数

--driver _name_
VM driver (docker, virtualbox, kvm2).
--kubernetes-version _version_
Kubernetes version.
--cpus _count_
Number of CPUs.
--memory _mb_
Memory in MB.
-p, --profile _name_
Profile name.
--nodes _count_
Number of nodes.

FAQ

What is the minikube-start command used for?

minikube start starts a local Kubernetes cluster. Creates a VM or container running Kubernetes. Default driver depends on platform. Supports multiple profiles for different clusters.

How do I run a basic minikube-start example?

Run `minikube start` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does --driver _name_ do in minikube-start?

VM driver (docker, virtualbox, kvm2).