From f09ae1d997495b6850d182e66ab0fe2f281d9232 Mon Sep 17 00:00:00 2001 From: Sasi Sriram Date: Mon, 17 Nov 2025 08:34:20 +0530 Subject: [PATCH] correct RBAC resource naming in kubectl auth documentation This commit fixes a small documentation issue in the kubectl auth reference. The text previously included the incorrect resource name "ClusterRole binding". This has been updated to the correct Kubernetes RBAC resource name "ClusterRoleBinding". Since this is a minor documentation update, no issue was created. --- site/content/en/references/kubectl/auth/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/en/references/kubectl/auth/_index.md b/site/content/en/references/kubectl/auth/_index.md index 9ec2c8787..17c22c58f 100644 --- a/site/content/en/references/kubectl/auth/_index.md +++ b/site/content/en/references/kubectl/auth/_index.md @@ -50,7 +50,7 @@ yes ``` ## `reconcile` -Reconciles rules for RBAC Role, RoleBinding, ClusterRole, and ClusterRole binding objects. +Reconciles rules for RBAC Role, RoleBinding, ClusterRole, and ClusterRoleBinding objects. Missing objects are created, and the containing namespace is created for namespaced objects, if required.