Fix and update

This commit is contained in:
baohua
2026-02-09 11:34:35 -08:00
parent e669ee0fe8
commit 63377d0431
136 changed files with 2146 additions and 262 deletions

View File

@@ -1,5 +1,7 @@
## Kubernetes 简介
Kubernetes 简介 示意图如下
![](../_images/kubernetes_logo.png)
### 什么是 Kubernetes
@@ -28,19 +30,24 @@ Kubernetes 完美解决了这些问题。
### 核心概念
#### Pod (豆荚)
#### Pod豆荚
Kubernetes 的最小调度单位一个 Pod 可以包含一个或多个紧密协作的容器共享网络和存储就像豌豆荚里的豌豆一样
#### Node (节点)
#### Node节点
运行 Pod 的物理机或虚拟机
#### Deployment (部署)
#### Deployment部署
定义应用的期望状态需要 3 个副本镜像版本为 v1K8s 会持续确保当前状态符合期望状态
#### Service (服务)
#### Service服务
定义一组 Pod 的访问策略提供稳定的 Cluster IP DNS 名称负责负载均衡
#### Namespace (命名空间)
#### Namespace命名空间
用于多租户资源隔离
---
@@ -60,7 +67,7 @@ Kubernetes 的最小调度单位。一个 Pod 可以包含一个或多个紧密
### 架构
Kubernetes 也是 C/S 架构 **Master (控制平面)** **Worker (工作节点)** 组成
Kubernetes 也是 C/S 架构 **Master (控制平面)****Worker (工作节点)** 组成
- **Control Plane**负责决策API Server, Scheduler, Controller Manager, etcd
- **Worker Node**负责干活Kubelet, Kube-proxy, Container Runtime