Skip to content

Commit 287b838

Browse files
committed
try adding a flochart
Signed-off-by: Matthias Bertschy <[email protected]>
1 parent bc1a9ea commit 287b838

File tree

1 file changed

+9
-0
lines changed
  • keps/sig-node/753-sidecar-containers

1 file changed

+9
-0
lines changed

keps/sig-node/753-sidecar-containers/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -859,6 +859,15 @@ works for that scenario as well as a more and more popular scenario of limited t
859859
graceful termination is set by external requirement and Pods needs to do best to gracefully terminate
860860
as much as possible (think of a Spot Instances with 30 seconds notification).
861861

862+
```mermaid
863+
flowchart TD
864+
A[Start] --> B{Is it?}
865+
B -->|Yes| C[OK]
866+
C --> D[Rethink]
867+
D --> B
868+
B ---->|No| E[End]
869+
```
870+
862871
Here is the proposed approach:
863872
1. Sidecar containers that have a `PreStop` hook will be notified when the Pod has begun terminating
864873
by executing the `PreStop` hook. This happens at the same time as regular containers, and begins

0 commit comments

Comments
 (0)