A Quick and Dirty Way to Run Pods
In this lesson, we will create and run a Pod in an imperative way.
Creating a Pod with Mongo
Just as we can execute docker run
to create containers, kubectl
allows us to create Pods with a single command.
For example, if we’d like to create a Pod with a Mongo database, the command is as follows.
Press + to interact
kubectl run db --image mongo
You’ll notice that the output says that deployment "db"
was created
.
Kubernetes runs more than a single Pod. It created a Deployment and a few other things. We won’t go into all the details just yet.
Verification
We ...
Access this course and 1400+ top-rated courses and projects.