minikube Verified current stable Not installed? Kubernetes

Minikube / Start Minikube With Custom Addons

Start Minikube With Custom Addons

Easily start Minikube with the metrics-server addon enabled for monitoring Kubernetes clusters.

$
Terminal
minikube start --addons <metrics-server>

When To Use

Use this command to start Minikube with the metrics-server addon for monitoring.

Command Builder

Tune the command before you copy it

Back to syntax
$
Generated Command
minikube start --addons <metrics-server>

Terminal Output

Expected runtime feedback

Simulated preview
>
Output
😄  minikube v1.23.2 on Darwin 11.2.3
✨  Using the docker driver based on user configuration
🔄  Starting control plane node minikube in cluster minikube
🏄  Launching Kubernetes ...
✅  Done! kubectl is now configured to use "minikube" cluster and "default" namespace

Command Breakdown

What each part is doing

minikube
Base Command
The executable that performs this operation. Here it runs Minikube before the shell applies any redirect operators.
<metrics-server>
metrics server
The host or server name supplied to this command.
--addons
Command Option
Tool-specific option used by this command invocation.

How To Run

Execution path

  1. Step 1

    Run `minikube start --addons metrics-server` in your terminal.

  2. Step 2

    Wait for Minikube to start and configure the cluster with the metrics-server addon.

  3. Step 3

    Use `kubectl get pods -n kube-system` to verify the metrics-server is running.

Alternative Approaches

Comparable commands in other tools

Alternative kubernetes tools for the same job.