Skip to content

Commit bbd9b90

Browse files
Clarify that custom finalizers names must be publicly qualified finalizer names
1 parent aaa4d95 commit bbd9b90

File tree

1 file changed

+5
-3
lines changed
  • content/en/docs/concepts/overview/working-with-objects

1 file changed

+5
-3
lines changed

content/en/docs/concepts/overview/working-with-objects/finalizers.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ typically lists of keys on a specific resource similar to annotations.
1717
Kubernetes specifies some finalizers automatically, but you can also specify
1818
your own.
1919

20-
{{<note>}}
21-
* Custom finalizer names must be fully qualified names, such as example.com/finalizer-name. Kubernetes enforces this format, and will reject resources that do not use qualified finalizer names.
22-
{{</note>}}
2320
## How finalizers work
2421

2522
When you create a resource using a manifest file, you can specify finalizers in
@@ -58,6 +55,11 @@ object once it is set.
5855
* After the deletion is requested, you can not resurrect this object. The only way is to delete it and make a new similar object.
5956
{{</note>}}
6057

58+
{{<note>}}
59+
Custom finalizer names **must** be publicly qualified finalizer names, such as `example.com/finalizer-name`.
60+
Kubernetes enforces this format; the API server rejects writes to objects where the change does not use qualified finalizer names for any custom finalizer.
61+
{{</note>}}
62+
6163
## Owner references, labels, and finalizers {#owners-labels-finalizers}
6264

6365
Like {{<glossary_tooltip text="labels" term_id="label">}},

0 commit comments

Comments
 (0)