-
What is the proper way to handle the deletion of objects if I use a controller? Or is a controller than not suitable? |
Beta Was this translation helpful? Give feedback.
Answered by
clux
Nov 24, 2023
Replies: 1 comment
-
From a controller POV you generally want to do it properly with a finalizer (otherwise you are not guaranteed to see the event). See https://kube.rs/controllers/gc/ |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
benkeil
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From a controller POV you generally want to do it properly with a finalizer (otherwise you are not guaranteed to see the event). See https://kube.rs/controllers/gc/