mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* Create minikube-start.md TLDR version of different ways to start minikube * Update minikube-start.md * Update2 minikube-start.md * Review changes minikube-start.md Did all the prescribed changes * review2 minikube-start.md * rev3 minikube-start.md * rev4 minikube-start.md * rev5 minikube-start.md * reviewed minikube-start.md * link change pages/common/minikube-start.md start minikube apge link Co-authored-by: Nelson Figueroa <30811275+nelsonfigueroa@users.noreply.github.com> * omit equal pages/common/minikube-start.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Update minikube-start.md --------- Co-authored-by: Nelson Figueroa <30811275+nelsonfigueroa@users.noreply.github.com> Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
24 lines
681 B
Markdown
24 lines
681 B
Markdown
# minikube start
|
|
|
|
> Start `minikube` with different configurations.
|
|
> More information: <https://minikube.sigs.k8s.io/docs/commands/start/>.
|
|
|
|
- Start `minikube` with a specific Kubernetes version:
|
|
|
|
`minikube start --kubernetes-version {{v1.24.0}}`
|
|
|
|
- Start `minikube` with specific resource allocations (e.g., memory and CPU):
|
|
|
|
`minikube start --memory {{2048}} --cpus {{2}}`
|
|
|
|
- Start `minikube` with a specific driver (e.g., VirtualBox):
|
|
|
|
`minikube start --driver {{virtualbox}}`
|
|
|
|
- Start `minikube` in the background (headless mode):
|
|
|
|
`minikube start --background`
|
|
|
|
- Start `minikube` with custom add-ons (e.g., the metrics server):
|
|
|
|
`minikube start --addons {{metrics-server}}`
|