Kubernetes === k8s

Kubernetes is a tool for running a bunch of different containers together

We give it some configuration to describe how we want our containers to run and interact with each other


Kubernetes Cluster

A collection of nodes + a master to manage them


Node

A virtual machine that will run our containers


Pod

More or less a running container. Technically, a pod can run multiple containers


Deployment

Minitors a set of pods, make sure they are running and restarts them if they crash


Service

Provides an easy-to-remember URL to access a running container