Skip to content

Commit

Permalink
Merge pull request kubernetes#49524 from dkarczmarski/fix-sidecar-con…
Browse files Browse the repository at this point in the history
…tainers

fix: typo in sidecar-containers.md
  • Loading branch information
k8s-ci-robot authored Jan 27, 2025
2 parents ad032e9 + dc618f0 commit d806c5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/en/docs/concepts/workloads/pods/sidecar-containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ maintain sidecar containers without affecting the primary application.
Sidecar containers share the same network and storage namespaces with the primary
container. This co-location allows them to interact closely and share resources.

From Kubernetes perspective, sidecars graceful termination is less important.
When other containers took all alloted graceful termination time, sidecar containers
will receive the `SIGTERM` following with `SIGKILL` faster than may be expected.
From a Kubernetes perspective, the sidecar container's graceful termination is less important.
When other containers take all allotted graceful termination time, the sidecar containers
will receive the `SIGTERM` signal, followed by the `SIGKILL` signal, before they have time to terminate gracefully.
So exit codes different from `0` (`0` indicates successful exit), for sidecar containers are normal
on Pod termination and should be generally ignored by the external tooling.

Expand Down

0 comments on commit d806c5a

Please sign in to comment.