Home Explore Blog CI



kubernetes

2nd chunk of `content/en/blog/_posts/2016-07-00-Minikube-Easily-Run-Kubernetes-Locally.md`
5c8467f0dedd3476083a470cbf02c8914bdf474f4f08bb0300000001000002fb
![](https://lh5.googleusercontent.com/UNRbuyrACtW32dxMehR7GaQlj4CaVxVmlw3UhTqzyIDBgENdT1PcXf-3RoW-T1PFhIQtBbIPq1p544NAKFMO_E_1BUx7MBpkRyw6URtv4W0xT-O4tyWDYJf3MYna6a_8cFJnVvXZ)


At this point, you have a running single-node Kubernetes cluster on your laptop! Minikube also configures `kubectl` for you, so you're also ready to run containers with no changes.



Minikube creates a Host-Only network interface that routes to your node. To interact with running pods or services, you should send traffic over this address. To find out this address, you can use the `minikube ip` command:

 ![](https://lh4.googleusercontent.com/Qm-FoMGXGTlyhiM9jzuH6HE3497ZH19gjDMZrkNVhrlJzi9KQXlGCPoWbss-Hxa3fSBTbgxVZYjUpK-EG4rSinHHGz-7xH9e0QsmE72gX6Mzn5FihvFBfeF6_pJugd1GT0Gzp5qb)

Title: Interacting with Your Minikube Kubernetes Cluster
Summary
This section explains how to interact with the Kubernetes cluster running on Minikube. Once Minikube starts, it configures kubectl, enabling users to immediately run containers. Minikube creates a Host-Only network interface for routing traffic to the node. The `minikube ip` command reveals the IP address needed to interact with running pods and services.