DrSnowbird / minikube

Run Kubernetes locally

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Minikube

BuildStatus Widget CodeCovWidget GoReport Widget

------------------- BEGIN: added by DrSnowbird ------------

To run without (NO) VM as Driver

  • Important: Only run this if you are using VM already - you can't spawn a VM within a VM).
  • The script captures many of steps suggested in the official Minikube blogs already as handy start up script for Minikube.
  • see also
run-minikube-with-or-without-VM.sh 0

To run with VM (Recommended for local machine)

  • This will install the latest release Kubernetes' version -- you can change it manually
  • (default to run WITH VM=virtualbox)
run-minikube-with-or-without-VM.sh

To start Dashboard when run without VM

minikube dashboard

or

firefox http://192.168.99.100:30000/
or
<Your-Browser-Command> http://192.168.99.100:30000/

To check Minikube Status

kubectl get all,pv,pvc,pod,service --all-namespaces

Deploy Examples

  • deployment "hello-minikube" created
kubectl run hello-minikube --image=k8s.gcr.io/echoserver:1.4 --port=8080 --generator=deployment/apps.v1

To Shutdown (not Delete/Destroy)

You just want to stop Minikube while preserving existing deployments

minikube stop

To Delete (Destroy/Destroy)

You want to destroy everything of Minikube to start over later.

minikube delete
sudo rm -rf ~/.minikube*
sudo rm -rf ~/.kube

------------------- END: added by DrSnowbird ------------

What is Minikube?

Minikube is a tool that makes it easy to run Kubernetes locally. Minikube runs a single-node Kubernetes cluster inside a VM on your laptop for users looking to try out Kubernetes or develop with it day-to-day.

Installation

macOS

brew cask install minikube

Linux

curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube && sudo cp minikube /usr/local/bin/ && rm minikube

Windows

Hyper-V needs to be enabled. For Windows 10 this can only run on these versions:

  • Windows 10 Enterprise
  • Windows 10 Professional
  • Windows 10 Education

Install with Chocolatey (recommended):

These commands must be run as administrator. To do this, open the Windows command line by typing 'cmd' in your start menu, right clicking it and choosing 'Run as administrator'.

choco install minikube
choco install kubernetes-cli

After it finished installing, close the current command line and restart. Minikube was added to your path automatically.

To start the minikube cluster, make sure you also have administrator rights.

minikube start

You might have to specify the vm driver.

minikube start --vm-driver hyperv

Install manually

Download the minikube-windows-amd64.exe file, rename it to minikube.exe and add it to your path.

Linux Continuous Integration without VM Support

Example with kubectl installation:

curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube && sudo cp minikube /usr/local/bin/ && rm minikube
curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && chmod +x kubectl && sudo cp kubectl /usr/local/bin/ && rm kubectl

export MINIKUBE_WANTUPDATENOTIFICATION=false
export MINIKUBE_WANTREPORTERRORPROMPT=false
export MINIKUBE_HOME=$HOME
export CHANGE_MINIKUBE_NONE_USER=true
mkdir -p $HOME/.kube
touch $HOME/.kube/config

export KUBECONFIG=$HOME/.kube/config
sudo -E minikube start --vm-driver=none
# sudo -E ./minikube start--vm-driver=none --apiserver-ips 127.0.0.1 --apiserver-name localhost

# this for loop waits until kubectl can access the api server that Minikube has created
for i in {1..150}; do # timeout for 5 minutes
   kubectl get po &> /dev/null
   if [ $? -ne 1 ]; then
      break
  fi
  sleep 2
done

# kubectl commands are now able to interact with Minikube cluster

Other Ways to Install

Minikube Version Management

The asdf tool offers version management for a wide range of languages and tools. On macOS, asdf is available via Homebrew and can be installed with brew install asdf. Then, the Minikube plugin itself can be installed with asdf plugin-add minikube. A specific version of Minikube can be installed with asdf install minikube <version>. The tool allows you to switch versions for projects using a .tool-versions file inside the project. An asdf plugin exists for kubectl as well.

We also released a Debian package and Windows installer on our releases page. If you maintain a Minikube package, please feel free to add it here.

Requirements

  • kubectl
  • macOS
  • Linux
    • VirtualBox or KVM
    • NOTE: Minikube also supports a --vm-driver=none option that runs the Kubernetes components on the host and not in a VM. Docker is required to use this driver but no hypervisor. If you use --vm-driver=none, be sure to specify a bridge network for docker. Otherwise it might change between network restarts, causing loss of connectivity to your cluster.
  • Windows
  • VT-x/AMD-v virtualization must be enabled in BIOS
  • Internet connection on first run

Quickstart

Here's a brief demo of Minikube usage. If you want to change the VM driver add the appropriate --vm-driver=xxx flag to minikube start. Minikube supports the following drivers:

  • virtualbox
  • vmwarefusion
  • KVM2
  • KVM (deprecated in favor of KVM2)
  • hyperkit
  • xhyve
  • hyperv
  • none (Linux-only) - this driver can be used to run the Kubernetes cluster components on the host instead of in a VM. This can be useful for CI workloads which do not support nested virtualization.
$ minikube start
Starting local Kubernetes v1.7.5 cluster...
Starting VM...
SSH-ing files into VM...
Setting up certs...
Starting cluster components...
Connecting to cluster...
Setting up kubeconfig...
Kubectl is now configured to use the cluster.

$ kubectl run hello-minikube --image=k8s.gcr.io/echoserver:1.4 --port=8080
deployment "hello-minikube" created
$ kubectl expose deployment hello-minikube --type=NodePort
service "hello-minikube" exposed

# We have now launched an echoserver pod but we have to wait until the pod is up before curling/accessing it
# via the exposed service.
# To check whether the pod is up and running we can use the following:
$ kubectl get pod
NAME                              READY     STATUS              RESTARTS   AGE
hello-minikube-3383150820-vctvh   1/1       ContainerCreating   0          3s
# We can see that the pod is still being created from the ContainerCreating status
$ kubectl get pod
NAME                              READY     STATUS    RESTARTS   AGE
hello-minikube-3383150820-vctvh   1/1       Running   0          13s
# We can see that the pod is now Running and we will now be able to curl it:
$ curl $(minikube service hello-minikube --url)
CLIENT VALUES:
client_address=192.168.99.1
command=GET
real path=/
...
$ kubectl delete service hello-minikube
service "hello-minikube" deleted
$ kubectl delete deployment hello-minikube
deployment "hello-minikube" deleted
$ minikube stop
Stopping local Kubernetes cluster...
Machine stopped.

Interacting With Your Cluster

kubectl

The minikube start command creates a "kubectl context" called "minikube". This context contains the configuration to communicate with your Minikube cluster.

Minikube sets this context to default automatically, but if you need to switch back to it in the future, run:

kubectl config use-context minikube,

or pass the context on each command like this: kubectl get pods --context=minikube.

Dashboard

To access the Kubernetes Dashboard, run this command in a shell after starting Minikube to get the address:

minikube dashboard

Services

To access a service exposed via a node port, run this command in a shell after starting Minikube to get the address:

minikube service [-n NAMESPACE] [--url] NAME

Design

Minikube uses libmachine for provisioning VMs, and kubeadm to provision a kubernetes cluster

For more information about Minikube, see the proposal.

Additional Links

Community

About

Run Kubernetes locally

License:Apache License 2.0


Languages

Language:Go 81.4%Language:Shell 10.8%Language:Makefile 4.6%Language:Python 1.2%Language:NSIS 1.1%Language:PowerShell 0.5%Language:Dockerfile 0.3%Language:Batchfile 0.1%