Here we see the trimmed down version of Kubernetes information. It doesn't contain everything but the mostly interacted concepts. If you want a full information, you should refer to Kubernetes documentation.


Architecture



Concepts



Responsibilities



Minikube


I assume that you already have it installed. Run command below to start it and check its status.


$ minikube start --vm-driver=virtualbox

$ minikube status
minikube
type: Control Plane
host: Running
kubelet: Running
apiserver: Running
kubeconfig: Configured

You can run $ minikube dashboard command in order to access UI from the browser.


You can also run $ kubectl describe node minikube | grep InternalIP command to obtain Minikube's IP address. This will help you to expose a Kubernetes Service to public access. You will need to build http(s)://minikube-ip:service-port pattern.


References