From a7ce0a5b5d880173bfdcef4167cc0ea3b640afa1 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Wed, 1 Oct 2025 10:32:47 +0200 Subject: [PATCH] docs(deploy): add delete permission for limitranges resource Adds the delete verb for limitranges in the deploy.yaml file. This change allows for the deletion of the specific resource named "extreme-request-defaults," enabling better resource management and cleanup in the deployment process. --- example/deploy.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/example/deploy.yaml b/example/deploy.yaml index e485ab8..e038d4b 100644 --- a/example/deploy.yaml +++ b/example/deploy.yaml @@ -17,6 +17,10 @@ rules: - apiGroups: [""] resources: ["limitranges"] verbs: ["list","create"] + - apiGroups: [""] + resources: ["limitranges"] + verbs: ["delete"] + resourceNames: ["extreme-request-defaults"] --- -- 2.52.0