Add notes from the video (PRs are welcome)
- kubernetes is open source system for automating deployment scaling and management of containerized applications
- to scale up = add more instances of our application
- add more instances when load increases and remove instances when load decreases
- kubernetes cluster consists of nodes (running machines, servers)
- each node can have multiple container
- one container = one pod
- grouping pods according to type of docker image
- routing the request to the pods
- external (visible, i.e. entry point) service/client vs internal service/client
- HPA horizontal pod autoscaler = allocating resources depending on demand
- Ingress
- kubernetes configuration
The notes are written by the community. If you see an error here, please create a PR with a fix. |