Files
docker_practice/13_kubernetes_concepts/summary.md
2026-03-09 20:04:21 -07:00

23 lines
1.1 KiB
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 是当前最主流的容器编排平台其声明式管理模型和丰富的 API 为大规模容器化应用提供了坚实的基础
| 概念 | 要点 |
|------|------|
| **Pod** | 最小调度单位包含一组共享网络和存储的容器 |
| **Deployment** | 管理 Pod 副本集支持滚动更新和回滚 |
| **Service** | Pod 提供稳定的网络访问入口和负载均衡 |
| **Namespace** | 资源隔离和多租户支持 |
| **ConfigMap/Secret** | 配置与敏感信息的管理 |
| **Master 节点** | 运行 API ServerSchedulerController Manager |
| **Worker 节点** | 运行 kubeletkube-proxy 和容器运行时 |
### 13.6.1 延伸阅读
- [部署 Kubernetes](../14_kubernetes_setup/README.md)搭建 Kubernetes 集群
- [Etcd](../15_etcd/README.md)Kubernetes 使用的分布式存储
- [底层实现](../12_implementation/README.md)容器技术原理
---
> 📝 **发现错误或有改进建议** 欢迎提交 [Issue](https://github.com/yeasy/docker_practice/issues) 或 [PR](https://github.com/yeasy/docker_practice/pulls)。