Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

Docker Kubernetes project


May 22, 2021 Docker From entry to practice



Kubernetes is a Docker-based open source container cluster management system initiated and maintained by the Google team that supports not only common cloud platforms, but also on-site data centers.

Kubernetes, built on top of Docker, can build a container scheduling service that allows users to manage cloud container clusters through Kubernetes clusters without the need for complex setup. T he system automatically selects the appropriate work nodes to perform the specific container cluster scheduling processing. T he core concept is the Container Pod (container compartment). A pod is made up of a set of containers that work on the same physical working node. T hese group containers have the same network namespace/IP and storage quotas that allow each pod to be port mapped on a case-by-case basis. In addition, the Kubernetes working node is managed by the primary system and contains services that can run the Docker container.

This chapter will be divided into five sections on Kubernetes. Including

  • Introduction to the project
  • Basic architecture and basic concepts
  • Get started quickly
  • Examples of practice
  • In-depth analysis and advanced topics.