File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
content/en/docs/reference/glossary Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ to clean up resources the deleted object owned.
19
19
<!-- more-->
20
20
21
21
When you tell Kubernetes to delete an object that has finalizers specified for
22
- it, the Kubernetes API marks the object for deletion, putting it into a
23
- read-only state . The target object remains in a terminating state while the
22
+ it, the Kubernetes API marks the object for deletion by populating ` .metadata.deletionTimestamp ` ,
23
+ and returns a ` 202 ` status code (HTTP "Accepted") . The target object remains in a terminating state while the
24
24
control plane, or other components, take the actions defined by the finalizers.
25
25
After these actions are complete, the controller removes the relevant finalizers
26
26
from the target object. When the ` metadata.finalizers ` field is empty,
27
- Kubernetes considers the deletion complete.
27
+ Kubernetes considers the deletion complete and deletes the object .
28
28
29
29
You can use finalizers to control {{<glossary_tooltip text="garbage collection" term_id="garbage-collection">}}
30
30
of resources. For example, you can define a finalizer to clean up related resources or
You can’t perform that action at this time.
0 commit comments