From 138b825d31a804d238f70959cbc8d4a1b707bb8c Mon Sep 17 00:00:00 2001 From: Gabriel Reid Date: Tue, 21 Mar 2023 18:13:46 +0100 Subject: [PATCH] Remove redundant description of finalizers Remove redundant information about finalizers on the finalizers page within the "working with objects" section. The same description of finalizers is imported directly from the glossary, so previous to this commit a nearly identical paragraph is repeated. For reference, the text imported from the glossasry is > You can use finalizers to control garbage collection of resources. > For example, you can define a finalizer to clean up related resources > or infrastructure before the controller deletes the target resource. while the text being removed in this commit is: > You can use finalizers to control garbage collection of resources > by alerting controllers to perform specific cleanup tasks before > deleting the target resource. --- .../docs/concepts/overview/working-with-objects/finalizers.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/content/en/docs/concepts/overview/working-with-objects/finalizers.md b/content/en/docs/concepts/overview/working-with-objects/finalizers.md index 119c4084bf..0e3d5f0662 100644 --- a/content/en/docs/concepts/overview/working-with-objects/finalizers.md +++ b/content/en/docs/concepts/overview/working-with-objects/finalizers.md @@ -8,10 +8,6 @@ weight: 80 {{}} -You can use finalizers to control {{}} -of resources by alerting {{}} to perform specific cleanup tasks before -deleting the target resource. - Finalizers don't usually specify the code to execute. Instead, they are typically lists of keys on a specific resource similar to annotations. Kubernetes specifies some finalizers automatically, but you can also specify