Files
docker_practice/14_kubernetes_setup/summary.md
2026-02-25 21:06:21 -08:00

18 lines
756 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 集群有多种方式应根据使用场景选择合适的方案
| 部署方式 | 适用场景 | 特点 |
|---------|---------|------|
| **kubeadm** | 生产环境 | 官方推荐的集群部署工具 |
| **Docker Desktop** | 本地开发 | 一键启用开箱即用 |
| **Kind** | CI/CD 测试 | Kubernetes IN Docker快速创建集群 |
| **K3s** | 边缘计算/IoT | 轻量级资源占用少 |
| **手动部署** | 学习原理 | 逐步配置每个组件加深理解 |
### 14.9.1 延伸阅读
- [容器编排基础](../13_kubernetes_concepts/README.md)Kubernetes 核心概念
- [Dashboard](14.7_dashboard.md)部署可视化管理界面
- [kubectl](14.8_kubectl.md)命令行工具使用指南