vault backup: 2026-08-10 12:25:40

This commit is contained in:
2026-08-10 12:25:40 +08:00
parent 9d664545c9
commit 27ffa2ed7e
2 changed files with 49 additions and 15 deletions
@@ -21,10 +21,10 @@ graph TD
end
subgraph K8sCluster["K8s 集群"]
SUBNAME["Service Name: user-service"] --> EP[Endpoint: pod IPs]
EP --> P1[Pod A: v2.3.1]
EP --> P2[Pod B: v2.3.1]
EP --> P3[Pod C: v2.4.0-new]
SVC["user-service"] --> EP[Endpoint<br/>pod IPs]
EP --> P1[Pod A<br/>v2.3.1]
EP --> P2[Pod B<br/>v2.3.1]
EP --> P3[Pod C<br/>v2.4.0-new]
DEPLOY[Deployment] -->|管理| P1
DEPLOY -->|管理| P2
@@ -32,27 +32,29 @@ graph TD
HPA[Horizontal Pod Autoscaler] -->|扩缩容指令| DEPLOY
sub kubeSystem["kube-system 组件"]
APISERVER[API Server]
ETCD[(etcd)]
CONTROLLER[M-controller Manager]
SCHEDULER[Scheduler]
subgraph kubeSystem["kube-system 组件"]
comp1[API Server]
comp2[(etcd)]
comp3[Controller Manager]
comp4[Scheduler]
end
P1 -->|心跳 / metrics| PROMETHEUS[Prometheus TSDB]
P2 -->|心跳 / metrics| PROMETHEUS
P3 -->|心跳 / metrics| PROMETHEUS
P1 -.->Fluentd --> ES[ES / Loki]
P2 -.->Fluentd --> ES
P3 -.->Fluentd --> ES
P1 -.-> FLUENTD[Fluentd]
P2 -.-> FLUENTD
P3 -.-> FLUENTD
FLUENTD --> ES_LOG[ES / Loki]
end
sub GrafanaUI["可视化层"]
subgraph GrafanaUI["可视化层"]
GRAFANA[Grafana Dashboard] -->|查询| PROMETHEUS
GRAFANA -->|告警规则| ALERTMANAGER[Alertmanager]
end
INGRESS --> SUBNAME
INGRESS --> SVC
```
### RollingUpdate 策略详解