@@ -187,16 +187,18 @@ func BuildMasterConfig(options configapi.MasterConfig) (*MasterConfig, error) {
187
187
188
188
plug , plugStart := newControllerPlug (options , client )
189
189
190
+ authorizer := newAuthorizer (policyClient , options .ProjectConfig .ProjectRequestMessage )
191
+
190
192
config := & MasterConfig {
191
193
Options : options ,
192
194
193
195
Authenticator : newAuthenticator (options , etcdHelper , serviceAccountTokenGetter , apiClientCAs , groupCache ),
194
- Authorizer : newAuthorizer ( policyClient , options . ProjectConfig . ProjectRequestMessage ) ,
196
+ Authorizer : authorizer ,
195
197
AuthorizationAttributeBuilder : newAuthorizationAttributeBuilder (requestContextMapper ),
196
198
197
199
PolicyCache : policyCache ,
198
200
GroupCache : groupCache ,
199
- ProjectAuthorizationCache : newProjectAuthorizationCache (privilegedLoopbackOpenShiftClient , privilegedLoopbackKubeClient , policyClient ),
201
+ ProjectAuthorizationCache : newProjectAuthorizationCache (authorizer , privilegedLoopbackKubeClient , policyClient ),
200
202
201
203
RequestContextMapper : requestContextMapper ,
202
204
@@ -320,10 +322,9 @@ func newAuthenticator(config configapi.MasterConfig, etcdHelper storage.Interfac
320
322
return ret
321
323
}
322
324
323
- func newProjectAuthorizationCache (openshiftClient * osclient.Client , kubeClient * kclient.Client ,
324
- policyClient policyclient.ReadOnlyPolicyClient ) * projectauth.AuthorizationCache {
325
+ func newProjectAuthorizationCache (authorizer authorizer.Authorizer , kubeClient * kclient.Client , policyClient policyclient.ReadOnlyPolicyClient ) * projectauth.AuthorizationCache {
325
326
return projectauth .NewAuthorizationCache (
326
- projectauth .NewReviewer ( openshiftClient ),
327
+ projectauth .NewAuthorizerReviewer ( authorizer ),
327
328
kubeClient .Namespaces (),
328
329
policyClient ,
329
330
)
0 commit comments