How to start minikube?
> minikube start --driver=docker > minikube status
How to install minikube on ubuntu 22.04 step-by-step Tutorial. ZacsTech
How to get information about k8s clusters?
> kubectl cluster-info > kubectl get deployment > kubectl get pod > kubectl get node > kubectl get svc > kubectl get deployment, pod, svc, ....
What is the hierarchy of kubernetes structures?
From top to down, structures are,
How to create a deployment in kubernetes?
You need to specify the docker image name in docker-hub that you want to run in K8s node. Say you want to run nginx webserver docker image from docker-hub,
> kubectl create deployment khan_depl_1 --image=nginx
deployment name is khan_depl
Normally you should specify all deployment details in a configuration yaml file, and then apply that yaml file
YT: TechWorld with Nana, “Kubernetese YAML File Explained”