@@ -38,7 +38,6 @@ import (
38
38
apisv1alpha1 "github.com/kcp-dev/kcp/pkg/apis/apis/v1alpha1"
39
39
workloadv1alpha1 "github.com/kcp-dev/kcp/pkg/apis/workload/v1alpha1"
40
40
"github.com/kcp-dev/kcp/pkg/authorization/delegated"
41
- kcpclientset "github.com/kcp-dev/kcp/pkg/client/clientset/versioned/cluster"
42
41
kcpinformers "github.com/kcp-dev/kcp/pkg/client/informers/externalversions"
43
42
"github.com/kcp-dev/kcp/pkg/virtual/framework"
44
43
virtualworkspacesdynamic "github.com/kcp-dev/kcp/pkg/virtual/framework/dynamic"
@@ -54,7 +53,6 @@ import (
54
53
type templateProvider struct {
55
54
kubeClusterClient kcpkubernetesclientset.ClusterInterface
56
55
dynamicClusterClient kcpdynamic.ClusterInterface
57
- kcpClusterClient kcpclientset.ClusterInterface
58
56
cachedKCPInformers kcpinformers.SharedInformerFactory
59
57
rootPathPrefix string
60
58
}
@@ -70,8 +68,8 @@ type templateParameters struct {
70
68
storageWrapperBuilder func (labels.Requirements ) forwardingregistry.StorageWrapper
71
69
}
72
70
73
- func (p * templateProvider ) newTemplate (parameters templateParameters ) template {
74
- return template {
71
+ func (p * templateProvider ) newTemplate (parameters templateParameters ) * template {
72
+ return & template {
75
73
templateProvider : * p ,
76
74
templateParameters : parameters ,
77
75
readyCh : make (chan struct {}),
@@ -205,7 +203,6 @@ func (t *template) authorize(ctx context.Context, a authorizer.Attributes) (auth
205
203
func (t * template ) bootstrapManagement (mainConfig genericapiserver.CompletedConfig ) (apidefinition.APIDefinitionSetGetter , error ) {
206
204
apiReconciler , err := apireconciler .NewAPIReconciler (
207
205
t .virtualWorkspaceName ,
208
- t .kcpClusterClient ,
209
206
t .cachedKCPInformers .Workload ().V1alpha1 ().SyncTargets (),
210
207
t .cachedKCPInformers .Apis ().V1alpha1 ().APIResourceSchemas (),
211
208
t .cachedKCPInformers .Apis ().V1alpha1 ().APIExports (),
@@ -263,7 +260,7 @@ func (t *template) bootstrapManagement(mainConfig genericapiserver.CompletedConf
263
260
return apiReconciler , nil
264
261
}
265
262
266
- func (t template ) buildVirtualWorkspace () * virtualworkspacesdynamic.DynamicVirtualWorkspace {
263
+ func (t * template ) buildVirtualWorkspace () * virtualworkspacesdynamic.DynamicVirtualWorkspace {
267
264
return & virtualworkspacesdynamic.DynamicVirtualWorkspace {
268
265
RootPathResolver : framework .RootPathResolverFunc (t .resolveRootPath ),
269
266
Authorizer : authorizer .AuthorizerFunc (t .authorize ),
0 commit comments