Skip to content

Commit 6527f42

Browse files
Merge pull request #16106 from deads2k/server-39-normal-authn
Automatic merge from submit-queue (batch tested with PRs 16052, 16105, 14319, 16106, 16104) use upstream authentication filter switch to use the upstream authentication filter. @openshift/sig-security
2 parents e2efede + dbd79a7 commit 6527f42

File tree

3 files changed

+2
-36
lines changed

3 files changed

+2
-36
lines changed

pkg/cmd/server/handlers/authentication.go

-34
This file was deleted.

pkg/cmd/server/origin/controller/standalone_apiserver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ func RunControllerServer(servingInfo configapi.HTTPServingInfo, kubeExternal cli
6262
// we use direct bypass to allow readiness and health to work regardless of the master health
6363
authz := serverhandlers.NewBypassAuthorizer(remoteAuthz, "/healthz", "/healthz/ready")
6464
handler := serverhandlers.AuthorizationFilter(mux, authz, authorizationAttributeBuilder, requestContextMapper)
65-
handler = serverhandlers.AuthenticationHandlerFilter(handler, authn, requestContextMapper)
65+
handler = apifilters.WithAuthentication(handler, requestContextMapper, authn, apifilters.Unauthorized(false))
6666
handler = apiserverfilters.WithPanicRecovery(handler)
6767
handler = apifilters.WithRequestInfo(handler, requestInfoResolver, requestContextMapper)
6868
handler = apirequest.WithRequestContext(handler, requestContextMapper)

pkg/cmd/server/origin/master.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ func (c *MasterConfig) buildHandlerChain() (func(apiHandler http.Handler, kc *ap
311311
})
312312
handler = apifilters.WithAudit(handler, genericConfig.RequestContextMapper, c.AuditBackend, auditPolicyChecker, genericConfig.LongRunningFunc)
313313
}
314-
handler = serverhandlers.AuthenticationHandlerFilter(handler, c.Authenticator, genericConfig.RequestContextMapper)
314+
handler = apifilters.WithAuthentication(handler, c.RequestContextMapper, c.Authenticator, apifilters.Unauthorized(false))
315315
handler = apiserverfilters.WithCORS(handler, c.Options.CORSAllowedOrigins, nil, nil, nil, "true")
316316
handler = apiserverfilters.WithTimeoutForNonLongRunningRequests(handler, genericConfig.RequestContextMapper, genericConfig.LongRunningFunc)
317317
// TODO: MaxRequestsInFlight should be subdivided by intent, type of behavior, and speed of

0 commit comments

Comments
 (0)