Skip to content

Commit b04b468

Browse files
author
OpenShift Bot
authored
Merge pull request #11228 from liggitt/node-auth-subresource
Merged by openshift-bot
2 parents 997ff87 + 11779b0 commit b04b468

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

pkg/cmd/server/kubernetes/node_auth.go

+10-10
Original file line numberDiff line numberDiff line change
@@ -96,16 +96,6 @@ func isSubpath(r *http.Request, path string) bool {
9696
// /logs/* => verb=<api verb from request>, resource=nodes/log
9797
func (n NodeAuthorizerAttributesGetter) GetRequestAttributes(u user.Info, r *http.Request) kauthorizer.Attributes {
9898

99-
// Default verb/resource is proxy nodes, which allows full access to the kubelet API
100-
attrs := oauthorizer.DefaultAuthorizationAttributes{
101-
APIVersion: "v1",
102-
APIGroup: "",
103-
Verb: "proxy",
104-
Resource: "nodes",
105-
ResourceName: n.nodeName,
106-
URL: r.URL.Path,
107-
}
108-
10999
namespace := ""
110100

111101
apiVerb := ""
@@ -122,6 +112,16 @@ func (n NodeAuthorizerAttributesGetter) GetRequestAttributes(u user.Info, r *htt
122112
apiVerb = "delete"
123113
}
124114

115+
// Default verb/resource is <apiVerb> nodes/proxy, which allows full access to the kubelet API
116+
attrs := oauthorizer.DefaultAuthorizationAttributes{
117+
APIVersion: "v1",
118+
APIGroup: "",
119+
Verb: apiVerb,
120+
Resource: "nodes/proxy",
121+
ResourceName: n.nodeName,
122+
URL: r.URL.Path,
123+
}
124+
125125
// Override verb/resource for specific paths
126126
// Updates to these rules require updating NodeAdminRole and NodeReaderRole in bootstrap policy
127127
switch {

0 commit comments

Comments
 (0)