Deploy the Application to Kubernetes
Learn how to deploy an application on Kubernetes.
We'll cover the following...
The first thing to know about deploying containers to Kubernetes is that they have to be wrapped in Pods. For now, think of a Pod as a lightweight wrapper that allows Kubernetes to run containers.
The above figure shows a Pod called first-pod wrapping a single container called web. The Pod only adds metadata to assist with scheduling.
First Kubernetes Pod
The Pod we’ll deploy is defined in a ...