From f527759087f628d51045182a1da1601608400795 Mon Sep 17 00:00:00 2001 From: xilabao Date: Wed, 14 Jun 2017 14:05:28 +0800 Subject: [PATCH] add the introduce of using wildcard '*' in nonResourceURL --- docs/admin/authorization/rbac.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/admin/authorization/rbac.md b/docs/admin/authorization/rbac.md index ca2f55d951..ac1f826002 100644 --- a/docs/admin/authorization/rbac.md +++ b/docs/admin/authorization/rbac.md @@ -247,7 +247,7 @@ Allow "GET" and "POST" requests to the non-resource endpoint "/healthz" and all ```yaml rules: -- nonResourceURLs: ["/healthz", "/healthz/*"] +- nonResourceURLs: ["/healthz", "/healthz/*"] # '*' in a nonResourceURL is a suffix glob match verbs: ["get", "post"] ```