Member-only story
[Tech Simplified] Kubernetes
Notes from an introductory Educative.io course
11 min readOct 13, 2023
Read for free: https://medium.com/@liverungrow/tech-simplified-kubernetes-782b6a34d7b5?sk=1d57b44408cb3ddb3fa2b34bacae472e
What is Kubernetes?
It is an application orchestrator for containerised cloud native microservices app.
- Orchestrator: a system that deploys and manages application with auto scaling, self-healing features
- Containerised app: An app that runs in containers (a progression from physical server, virtual machines).
- Microservices: A system of services, each with a single function and responsibility.
Docker and Kubernetes?
They complement each other.
Most of the time,
- Write your code in your favourite languages
- Use Docker to package it, test it, and ship container.
- The final steps of deploying and running it are handled by Kubernetes.
Of course, Kubernetes work with other container technologies as well.
Kubernetes and Docker Swarm are similar