Kubernetes Intro 1: Pods
Once you have kubectl set up, the full power of Kubernetes is at your fingertips! There’s a lot to learn before you can build exascale applications to serve bajillions of requests per second, though. In this post, we’ll get familiar with pods. Create a pod The term pod is k8s-ese for container, basically. Technically, a pod can have multiple containers in it, but usually it just has one. Pods are pretty much the only reason K8s exists; everything else about K8s revolves around getting traffic to and from pods....