Articles → DOCKER → Create A Pod In Kubernetes
Create A Pod In Kubernetes
What Is A Pod?
Prerequisite
snap install kubectl --classic
How To Create A Pod?
kubectl run [pod_name] --image=[image]
How To Get The List Of Pods?
Executing Command On Pods
kubectl exec -it pod1 -- /bin/bash
Delete The Pod
kubectl delete po [pod_name]