LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

minikube

runs local Kubernetes clusters

TLDR

Start cluster
$ minikube start
copy
Stop cluster
$ minikube stop
copy
Delete cluster
$ minikube delete
copy
Check status
$ minikube status
copy
Open dashboard
$ minikube dashboard
copy
SSH into node
$ minikube ssh
copy

SYNOPSIS

minikube command [options]

DESCRIPTION

minikube runs local Kubernetes clusters. It's designed for development and learning.The tool creates a single-node cluster on your machine. Supports multiple drivers.

PARAMETERS

COMMAND

Minikube operation.
start
Start cluster.
stop
Stop cluster.
delete
Delete cluster.
status
Show status.
dashboard
Open dashboard.
--driver NAME
VM driver (docker, virtualbox).
--help
Display help information.

CAVEATS

Single-node only. Requires VM or container runtime. Resource intensive.

HISTORY

Minikube was created by Kubernetes team for running local Kubernetes clusters for development.

SEE ALSO

kubectl(1), kind(1), k3s(1)

Copied to clipboard
Kai