Okay, so I've been fiddling around long enough with k8s that I think I can explain a few basics. First, a lot of this is abstraction layers, to simplify how to deal with things. At the bottom, there are the things we want to run, or programs. Generally these are long lived, but they can be shorter duration bits too. Next up are libraries and frameworks; the idea here is that different programs might have different dependencies, and that differences can cause serious conflicts and breakage to programs. To minimize conflict, we would like to use virtual machines, but this tends to add lots of overhead, so instead we use a technology called containers, which provides some isolation without all the overhead. A popular tech that does this is Docker, but there are other containers that we can use. To help manage what can be a number of containers, we use kubernetes (or something similar). It does this by putting one (or more) containers into something called a pod, which it runs on a worker node. K8s keeps track of pods (and other logical organization pieces) on a control or admin node, which might also be a worker node. The main feature of k8s is that you describe how you'd like your program to be run, and its up to k8s to make that happen. It figures out which node might be a candidate, spins up a pod on the node, which spin up the containers with all the right bits to actually execute the program. So, basically you have to gather the requirements together, but then its up to k8s to satisfy the requirements. We can also ask k8s to do things like run multiple copies (for scaling) and to deploy a bunch of different programs/containers to run multiple services. Using k8s, you are trimming down the admin overhead of having to run each program one by one, and turning your infrastructure into cattle rather than managing a bunch of independent "pet" vm/nodes, and having to worry about specific admin. It gives you ultimate flexibility -- if you want to try a new library or just a new revision of your code, you can edit a file and spin one up. If it works, more edits and its all updated, and if it doesnt, a different edit and the bad stuff is history. Now any update is literally keystrokes away, and theoretically it should be super simple to test any change at any time.