Files
docker_practice/15_etcd/summary.md
2026-02-25 21:06:21 -08:00

18 lines
758 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.

## 本章小结
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