@@ -48,6 +48,7 @@ import (
48
48
auditlog "k8s.io/apiserver/plugin/pkg/audit/log"
49
49
auditwebhook "k8s.io/apiserver/plugin/pkg/audit/webhook"
50
50
pluginwebhook "k8s.io/apiserver/plugin/pkg/audit/webhook"
51
+ "k8s.io/client-go/rest"
51
52
"k8s.io/kube-aggregator/pkg/apis/apiregistration"
52
53
apiregistrationv1beta1 "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1"
53
54
aggregatorscheme "k8s.io/kube-aggregator/pkg/apiserver/scheme"
@@ -377,12 +378,13 @@ func buildPublicAddress(masterConfig configapi.MasterConfig) (net.IP, error) {
377
378
return publicAddress , nil
378
379
}
379
380
380
- func buildKubeApiserverConfig (
381
- masterConfig configapi.MasterConfig ,
382
- admissionControl admission.Interface ,
383
- originAuthenticator authenticator.Request ,
384
- kubeAuthorizer authorizer.Authorizer ,
385
- ) (* master.Config , error ) {
381
+ type incompleteKubeMasterConfig struct {
382
+ options * kapiserveroptions.ServerRunOptions
383
+ incompleteConfig * apiserver.Config
384
+ masterConfig configapi.MasterConfig
385
+ }
386
+
387
+ func BuildKubernetesMasterConfig (masterConfig configapi.MasterConfig ) (* incompleteKubeMasterConfig , error ) {
386
388
apiserverOptions , err := BuildKubeAPIserverOptions (masterConfig )
387
389
if err != nil {
388
390
return nil , err
@@ -393,6 +395,20 @@ func buildKubeApiserverConfig(
393
395
return nil , err
394
396
}
395
397
398
+ return & incompleteKubeMasterConfig {apiserverOptions , genericConfig , masterConfig }, nil
399
+ }
400
+
401
+ func (rc * incompleteKubeMasterConfig ) LoopbackConfig () * rest.Config {
402
+ return rc .incompleteConfig .LoopbackClientConfig
403
+ }
404
+
405
+ func (rc * incompleteKubeMasterConfig ) Complete (
406
+ admissionControl admission.Interface ,
407
+ originAuthenticator authenticator.Request ,
408
+ kubeAuthorizer authorizer.Authorizer ,
409
+ ) (* master.Config , error ) {
410
+ genericConfig , apiserverOptions , masterConfig := rc .incompleteConfig , rc .options , rc .masterConfig
411
+
396
412
proxyClientCerts , err := buildProxyClientCerts (masterConfig )
397
413
if err != nil {
398
414
return nil , err
@@ -567,33 +583,13 @@ func buildKubeApiserverConfig(
567
583
)
568
584
}
569
585
570
- return kubeApiserverConfig , nil
571
- }
572
-
573
- // TODO this function's parameters need to be refactored
574
- func BuildKubernetesMasterConfig (
575
- masterConfig configapi.MasterConfig ,
576
- admissionControl admission.Interface ,
577
- originAuthenticator authenticator.Request ,
578
- kubeAuthorizer authorizer.Authorizer ,
579
- ) (* master.Config , error ) {
580
- apiserverConfig , err := buildKubeApiserverConfig (
581
- masterConfig ,
582
- admissionControl ,
583
- originAuthenticator ,
584
- kubeAuthorizer ,
585
- )
586
- if err != nil {
587
- return nil , err
588
- }
589
-
590
586
// we do this for integration tests to be able to turn it off for better startup speed
591
587
// TODO remove the entire option once openapi is faster
592
588
if masterConfig .DisableOpenAPI {
593
- apiserverConfig .GenericConfig .OpenAPIConfig = nil
589
+ kubeApiserverConfig .GenericConfig .OpenAPIConfig = nil
594
590
}
595
591
596
- return apiserverConfig , nil
592
+ return kubeApiserverConfig , nil
597
593
}
598
594
599
595
func defaultOpenAPIConfig (config configapi.MasterConfig ) * openapicommon.Config {
0 commit comments