File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
keps/sig-node/753-sidecar-containers Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -859,6 +859,15 @@ works for that scenario as well as a more and more popular scenario of limited t
859
859
graceful termination is set by external requirement and Pods needs to do best to gracefully terminate
860
860
as much as possible (think of a Spot Instances with 30 seconds notification).
861
861
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
+
862
871
Here is the proposed approach:
863
872
1 . Sidecar containers that have a ` PreStop ` hook will be notified when the Pod has begun terminating
864
873
by executing the ` PreStop ` hook. This happens at the same time as regular containers, and begins
You can’t perform that action at this time.
0 commit comments