mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
add subresource to forbidden message
This commit is contained in:
parent
6f320061f5
commit
c49639c53c
@ -56,6 +56,9 @@ func forbiddenMessage(attributes authorizer.Attributes) string {
|
|||||||
if group := attributes.GetAPIGroup(); len(group) > 0 {
|
if group := attributes.GetAPIGroup(); len(group) > 0 {
|
||||||
resource = resource + "." + group
|
resource = resource + "." + group
|
||||||
}
|
}
|
||||||
|
if subresource := attributes.GetSubresource(); len(subresource) > 0 {
|
||||||
|
resource = resource + "/" + subresource
|
||||||
|
}
|
||||||
|
|
||||||
if ns := attributes.GetNamespace(); len(ns) > 0 {
|
if ns := attributes.GetNamespace(); len(ns) > 0 {
|
||||||
return fmt.Sprintf("User %q cannot %s %s in the namespace %q.", username, attributes.GetVerb(), resource, ns)
|
return fmt.Sprintf("User %q cannot %s %s in the namespace %q.", username, attributes.GetVerb(), resource, ns)
|
||||||
|
Loading…
Reference in New Issue
Block a user