What is a Container? (and Kubernetes)

138 views

I don’t have a computer science background and I often hear people talk about containers and Kubernetes. I frankly have no idea what it is and how it is different from a virtual machine (remote computer). Would like to understand what this is and why it is useful.

In: 1

4 Answers

Anonymous 0 Comments

* A container is basically a lightweight virtual machine.

* Kubernetes (also known as k8s) is software for managing containers; you tell it what containers you need running and it starts them up for you. It can do things like checking that they’re still running (and restarting them if they crash), or managing upgrades to a new version of the container by restarting them one by one, etc.

You are viewing 1 out of 4 answers, click here to view all answers.