File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
content/en/docs/concepts/overview/working-with-objects Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ and does the following:
26
26
27
27
* Modifies the object to add a ` metadata.deletionTimestamp ` field with the
28
28
time you started the deletion.
29
- * Prevents the object from being removed until its ` metadata.finalizers ` field is empty .
29
+ * Prevents the object from being removed until its ` metadata.finalizers ` field is removed as ` finalizers ` can not be added or changed .
30
30
* Returns a ` 202 ` status code (HTTP "Accepted")
31
31
32
32
The controller managing that finalizer notices the update to the object setting the
@@ -45,6 +45,13 @@ controller can't delete it because the finalizer exists. When the Pod stops
45
45
using the ` PersistentVolume ` , Kubernetes clears the ` pv-protection ` finalizer,
46
46
and the controller deletes the volume.
47
47
48
+ {{<note >}}
49
+ * When you ` DELETE ` an object, Kubernetes makes that object almost read-only with exception that the
50
+ ` metadata.deletionTimestamp ` field gets set and the ` finalizers ` can be removed. Thus ` deletionTimestamp ` is immutable.
51
+
52
+ * After the deletion is requested, you can not resurrect this object. The only way is to delete it and make a new similar object.
53
+ {{</note >}}
54
+
48
55
## Owner references, labels, and finalizers {#owners-labels-finalizers}
49
56
50
57
Like {{<glossary_tooltip text="labels" term_id="label">}},
You can’t perform that action at this time.
0 commit comments