Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.42 KB

05-kubernetes-intro.md

File metadata and controls

43 lines (31 loc) · 1.42 KB

10.5 Introduction to Kubernetes

Slides

Notes

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.

Navigation