mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-23 07:35:24 +02:00
minikube-start: add page (#14315)
* 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>
This commit is contained in:
parent
42b6c29788
commit
6f7897062a
1 changed files with 24 additions and 0 deletions
24
pages/common/minikube-start.md
Normal file
24
pages/common/minikube-start.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# 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}}`
|
Loading…
Add table
Reference in a new issue