In Kubernetes, you deploy your applications as pods, which refer to one or more containers and other resources that are closely related to each other and collectively represent your application. A pod is the core unit of work in Kubernetes and is conceptually similar to an ECS task definition, although under the hood they work in a completely different way.
Before we create our first pod, let's establish a folder called k8s in the todobackend repository that will hold all Kubernetes configuration for the todobackend application, and then create ...