Fix naming of the chapter dir

This commit is contained in:
Baohua Yang
2026-02-22 12:42:15 -08:00
parent 76e10ae045
commit b62860cee6
130 changed files with 1001 additions and 852 deletions

17
15_etcd/summary.md Normal file
View File

@@ -0,0 +1,17 @@
## 15.5 本章小结
etcd Kubernetes 的核心存储组件为分布式系统提供可靠的键值存储和服务发现能力
| 概念 | 要点 |
|------|------|
| **定位** | 分布式键值存储系统用于配置管理和服务发现 |
| **协议** | 基于 Raft 一致性算法保证数据强一致 |
| **API** | 提供 gRPC HTTP API |
| **集群** | 建议使用奇数节点 (3 5 ) 部署 |
| **etcdctl** | 命令行管理工具支持 put/get/del/watch 等操作 |
| **安全** | 支持 TLS 加密通信和 RBAC 访问控制 |
### 15.5.1 延伸阅读
- [容器编排基础](../13_kubernetes_concepts/README.md)Kubernetes 如何使用 etcd
- [部署 Kubernetes](../14_kubernetes_setup/README.md)在集群中部署 etcd