Files
docker_practice/13_kubernetes_concepts/README.md
2026-03-03 19:30:21 -08:00

16 lines
748 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 第十三章 容器编排基础
`Kubernetes` Google 发起的开源容器编排系统它支持多种云平台与私有数据中心
`Kubernetes` 负责对容器工作负载进行调度与编排其目的是让用户通过集群声明式地管理应用而无需手动干预每个容器的生命周期细节
Kubernetes 的最小调度单位是 `Pod`一个 `Pod` 由一组紧密协作的容器构成它们共享网络命名空间IP 以及部分存储资源也可以根据需要对 Pod 进行端口映射
本章将分为 5 节介绍 `Kubernetes`
* [简介](13.1_intro.md)
* [基本概念](13.2_concepts.md)
* [架构设计](13.3_design.md)
* [高级特性](13.4_advanced.md)
* [实战练习](13.5_practice.md)