You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- **Container-level restarts:** If a container inside a Pod fails, Kubernetes restarts it based on the [`restartPolicy`](/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy).
42
42
43
43
- **Replica replacement:** If a Pod in a [Deployment](/docs/concepts/workloads/controllers/deployment/) or [StatefulSet](/docs/concepts/workloads/controllers/statefulset/) fails, Kubernetes creates a replacement Pod to maintain the specified number of replicas.
44
-
If a Pod fails that is part of a [DaemonSet](/docs/concepts/workloads/controllers/daemonset/) fails, the control plane
44
+
If a Pod that is part of a [DaemonSet](/docs/concepts/workloads/controllers/daemonset/) fails, the control plane
45
45
creates a replacement Pod to run on the same node.
46
46
-->
47
47
## 自我修复能力 {#self-healing-capabilities}
@@ -73,7 +73,7 @@ Here are some of the key components that provide Kubernetes self-healing:
73
73
74
74
- **[kubelet](/docs/concepts/architecture/#kubelet):** Ensures that containers are running, and restarts those that fail.
75
75
76
-
- **ReplicaSet, StatefulSet and DaemonSet controller:** Maintains the desired number of Pod replicas.
76
+
- **Deployment (via ReplicaSet), ReplicaSet, StatefulSet and DaemonSet controllers:** Maintain the desired number of Pod replicas.
77
77
78
78
- **PersistentVolume controller:** Manages volume attachment and detachment for stateful workloads.
79
79
-->
@@ -82,7 +82,7 @@ Here are some of the key components that provide Kubernetes self-healing:
0 commit comments