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