Skip to content

Commit dbcef5f

Browse files
authored
Merge pull request #53233 from arnab-logs/patch-1
Fix duplicated word in DaemonSet self-healing description
2 parents b87c75a + 2225afa commit dbcef5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/en/docs/concepts/architecture/self-healing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ It automatically replaces failed containers, reschedules workloads when nodes be
2222
- **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).
2323

2424
- **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.
25-
If a Pod fails that is part of a [DaemonSet](/docs/concepts/workloads/controllers/daemonset/) fails, the control plane
25+
If a Pod that is part of a [DaemonSet](/docs/concepts/workloads/controllers/daemonset/) fails, the control plane
2626
creates a replacement Pod to run on the same node.
2727

2828
- **Persistent storage recovery:** If a node is running a Pod with a PersistentVolume (PV) attached, and the node fails, Kubernetes can reattach the volume to a new Pod on a different node.
@@ -49,4 +49,4 @@ Here are some of the key components that provide Kubernetes self-healing:
4949
- Learn about [Kubernetes Controllers](/docs/concepts/architecture/controller/)
5050
- Explore [PersistentVolumes](/docs/concepts/storage/persistent-volumes/)
5151
- Read about [node autoscaling](/docs/concepts/cluster-administration/node-autoscaling/). Node autoscaling
52-
also provides automatic healing if or when nodes fail in your cluster.
52+
also provides automatic healing if or when nodes fail in your cluster.

0 commit comments

Comments
 (0)