LinuxCommandLibrary

minikube-start

starts a local Kubernetes cluster

TLDR

Start minikube cluster

$ minikube start
copy
Start with specific driver
$ minikube start --driver=[docker]
copy
Start with specific Kubernetes version
$ minikube start --kubernetes-version=[v1.28.0]
copy
Start with more resources
$ minikube start --cpus=[4] --memory=[8192]
copy
Start with specific profile
$ minikube start -p [profile-name]
copy

SYNOPSIS

minikube start [options]

DESCRIPTION

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.

PARAMETERS

--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.

SEE ALSO

minikube(1), kubectl(1)

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community