Delete kustomizationerror.

Do a longstanding TODO to remove kustomizationerror.

It wasn't used much, and it wasn't used consistently,
because it's complicated to decided when it's worth
proceeding to accumulate errors when one already knows
that one has a fatal error in the kustomization.  Its
use was blocking refactoring for simplicity and making
tests harder to write.

Removing it lets us reinstate the cyclomatic complexity
check in KustTarget.

Also added more info to the affected error messages.
This commit is contained in:
jregan
2019-04-21 13:33:14 -07:00
parent a6f41bb96d
commit 9a85071085
7 changed files with 110 additions and 253 deletions

2
go.mod
View File

@@ -23,7 +23,7 @@ require (
github.com/modern-go/reflect2 v0.0.0-20180228065516-1df9eeb2bb81 // indirect github.com/modern-go/reflect2 v0.0.0-20180228065516-1df9eeb2bb81 // indirect
github.com/onsi/ginkgo v1.8.0 // indirect github.com/onsi/ginkgo v1.8.0 // indirect
github.com/onsi/gomega v1.5.0 // indirect github.com/onsi/gomega v1.5.0 // indirect
github.com/pkg/errors v0.8.0 github.com/pkg/errors v0.8.1
github.com/spf13/cobra v0.0.2 github.com/spf13/cobra v0.0.2
github.com/spf13/pflag v1.0.1 github.com/spf13/pflag v1.0.1
github.com/stretchr/testify v1.3.0 // indirect github.com/stretchr/testify v1.3.0 // indirect

4
go.sum
View File

@@ -47,8 +47,8 @@ github.com/onsi/ginkgo v1.8.0 h1:VkHVNpR4iVnU8XQR6DBm8BqYjN7CRzw+xKUbVVbbW9w=
github.com/onsi/ginkgo v1.8.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.8.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
github.com/onsi/gomega v1.5.0 h1:izbySO9zDPmjJ8rDjLvkA2zJHIo+HkYXHnf7eN7SSyo= github.com/onsi/gomega v1.5.0 h1:izbySO9zDPmjJ8rDjLvkA2zJHIo+HkYXHnf7eN7SSyo=
github.com/onsi/gomega v1.5.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.5.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
github.com/pkg/errors v0.8.0 h1:WdK/asTD0HN+q6hsWO3/vpuAkAr+tw6aNJNDFFf0+qw= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/spf13/cobra v0.0.2 h1:NfkwRbgViGoyjBKsLI0QMDcuMnhM+SBg3T0cGfpvKDE= github.com/spf13/cobra v0.0.2 h1:NfkwRbgViGoyjBKsLI0QMDcuMnhM+SBg3T0cGfpvKDE=

View File

@@ -1,61 +0,0 @@
/*
Copyright 2018 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package error
import (
"fmt"
)
// KustomizationError represents an error with a kustomization.
type KustomizationError struct {
KustomizationPath string
ErrorMsg string
}
func (ke KustomizationError) Error() string {
return fmt.Sprintf("Kustomization File [%s]: %s\n", ke.KustomizationPath, ke.ErrorMsg)
}
// KustomizationErrors collects all errors.
type KustomizationErrors struct {
kErrors []error
}
func (ke *KustomizationErrors) Error() string {
errormsg := ""
for _, e := range ke.kErrors {
errormsg += e.Error() + "\n"
}
return errormsg
}
// Append adds error to a collection of errors.
func (ke *KustomizationErrors) Append(e error) {
ke.kErrors = append(ke.kErrors, e)
}
// Get returns all collected errors.
func (ke *KustomizationErrors) Get() []error {
return ke.kErrors
}
// BatchAppend adds all errors from another KustomizationErrors
func (ke *KustomizationErrors) BatchAppend(e KustomizationErrors) {
for _, err := range e.Get() {
ke.kErrors = append(ke.kErrors, err)
}
}

View File

@@ -1,89 +0,0 @@
/*
Copyright 2018 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package error
import (
"fmt"
"strings"
"testing"
)
func TestKustomizationError_Error(t *testing.T) {
errorMsg := "Kustomization not found"
me := KustomizationError{KustomizationPath: filepath, ErrorMsg: errorMsg}
if !strings.Contains(me.Error(), filepath) {
t.Errorf("Incorrect KustomizationError.Error() message \n")
t.Errorf("Expected filepath %s, but unfound\n", filepath)
}
if !strings.Contains(me.Error(), errorMsg) {
t.Errorf("Incorrect KustomizationError.Error() message \n")
t.Errorf("Expected errorMsg %s, but unfound\n", errorMsg)
}
}
func TestKustomizationErrors_Error(t *testing.T) {
me := KustomizationError{KustomizationPath: filepath, ErrorMsg: "Kustomization not found"}
ce := ConfigmapError{Path: filepath, ErrorMsg: "can't find configmap name"}
pe := PatchError{KustomizationPath: filepath, PatchFilepath: filepath, ErrorMsg: "can't find patch file"}
re := ResourceError{KustomizationPath: filepath, ResourceFilepath: filepath, ErrorMsg: "can't find resource file"}
se := SecretError{KustomizationPath: filepath, ErrorMsg: "can't find secret name"}
mes := KustomizationErrors{kErrors: []error{me, ce, pe, re, se}}
expectedErrorMsg := fmt.Sprintf("%s\n%s\n%s\n%s\n%s\n", me.Error(), ce.Error(), pe.Error(), re.Error(), se.Error())
if mes.Error() != expectedErrorMsg {
t.Errorf("Incorrect KustomizationErrors.Error() message\n")
t.Errorf(" Expected: %s\n", expectedErrorMsg)
t.Errorf(" Got: %s\n", mes.Error())
}
}
func TestKustomizationErrors_Get(t *testing.T) {
ce := ConfigmapError{Path: "kustomization/filepath", ErrorMsg: "can't find configmap name"}
mes := KustomizationErrors{kErrors: []error{ce}}
if len(mes.Get()) != 1 {
t.Errorf("Incorrect KustomizationErrors.Get()\n")
t.Errorf(" Expected: %v\n", []error{ce})
t.Errorf(" Got: %s\n", mes.Get())
}
}
func TestKustomizationErrors_Append(t *testing.T) {
ce := ConfigmapError{Path: "kustomization/filepath", ErrorMsg: "can't find configmap name"}
pe := PatchError{KustomizationPath: "kustomization/filepath", PatchFilepath: "patch/path", ErrorMsg: "can't find patch file"}
mes := KustomizationErrors{kErrors: []error{ce}}
mes.Append(pe)
if len(mes.Get()) != 2 {
t.Errorf("Incorrect KustomizationErrors.Append()\n")
t.Errorf(" Expected: %d error\n%v/n", 2, []error{ce, pe})
t.Errorf(" Got: %d error\n%v\n", len(mes.Get()), mes.Get())
}
}
func TestKustomizationErrors_BatchAppend(t *testing.T) {
ce := ConfigmapError{Path: "kustomization/filepath", ErrorMsg: "can't find configmap name"}
pe := PatchError{KustomizationPath: "kustomization/filepath", PatchFilepath: "patch/path", ErrorMsg: "can't find patch file"}
mes := KustomizationErrors{kErrors: []error{ce}}
me := KustomizationErrors{kErrors: []error{pe}}
mes.BatchAppend(me)
if len(mes.Get()) != 2 {
t.Errorf("Incorrect KustomizationErrors.Append()\n")
t.Errorf(" Expected: %d error\n%v/n", 2, []error{ce, pe})
t.Errorf(" Got: %d error\n%v\n", len(mes.Get()), mes.Get())
}
}

View File

@@ -41,22 +41,18 @@ func (rmF *Factory) RF() *resource.Factory {
return rmF.resF return rmF.resF
} }
// FromFiles returns a ResMap given a resource path slice. // FromFile returns a ResMap given a resource path.
func (rmF *Factory) FromFiles( func (rmF *Factory) FromFile(
loader ifc.Loader, paths []string) (ResMap, error) { loader ifc.Loader, path string) (ResMap, error) {
var result []ResMap content, err := loader.Load(path)
for _, path := range paths { if err != nil {
content, err := loader.Load(path) return nil, err
if err != nil {
return nil, errors.Wrap(err, "Load from path "+path+" failed")
}
res, err := rmF.NewResMapFromBytes(content)
if err != nil {
return nil, internal.Handler(err, path)
}
result = append(result, res)
} }
return MergeWithErrorOnIdCollision(result...) res, err := rmF.NewResMapFromBytes(content)
if err != nil {
return nil, internal.Handler(err, path)
}
return res, nil
} }
// newResMapFromBytes decodes a list of objects in byte array format. // newResMapFromBytes decodes a list of objects in byte array format.
@@ -65,7 +61,6 @@ func (rmF *Factory) NewResMapFromBytes(b []byte) (ResMap, error) {
if err != nil { if err != nil {
return nil, err return nil, err
} }
result := ResMap{} result := ResMap{}
for _, res := range resources { for _, res := range resources {
id := res.Id() id := res.Id()

View File

@@ -32,7 +32,7 @@ import (
"sigs.k8s.io/kustomize/pkg/types" "sigs.k8s.io/kustomize/pkg/types"
) )
func TestFromFiles(t *testing.T) { func TestFromFile(t *testing.T) {
resourceStr := `apiVersion: apps/v1 resourceStr := `apiVersion: apps/v1
kind: Deployment kind: Deployment
@@ -85,12 +85,10 @@ metadata:
}), }),
} }
m, _ := rmF.FromFiles( m, _ := rmF.FromFile(l, "deployment.yaml")
l, []string{"deployment.yaml"})
if len(m) != 3 { if len(m) != 3 {
t.Fatalf("%#v should contain 3 appResource, but got %d", m, len(m)) t.Fatalf("%#v should contain 3 appResource, but got %d", m, len(m))
} }
if err := expected.ErrorIfNotEqual(m); err != nil { if err := expected.ErrorIfNotEqual(m); err != nil {
t.Fatalf("actual doesn't match expected: %v", err) t.Fatalf("actual doesn't match expected: %v", err)
} }

View File

@@ -28,7 +28,6 @@ import (
"sigs.k8s.io/kustomize/pkg/accumulator" "sigs.k8s.io/kustomize/pkg/accumulator"
"sigs.k8s.io/kustomize/pkg/ifc" "sigs.k8s.io/kustomize/pkg/ifc"
"sigs.k8s.io/kustomize/pkg/ifc/transformer" "sigs.k8s.io/kustomize/pkg/ifc/transformer"
interror "sigs.k8s.io/kustomize/pkg/internal/error"
patchtransformer "sigs.k8s.io/kustomize/pkg/patch/transformer" patchtransformer "sigs.k8s.io/kustomize/pkg/patch/transformer"
"sigs.k8s.io/kustomize/pkg/pgmconfig" "sigs.k8s.io/kustomize/pkg/pgmconfig"
"sigs.k8s.io/kustomize/pkg/plugins" "sigs.k8s.io/kustomize/pkg/plugins"
@@ -195,23 +194,16 @@ func (kt *KustTarget) shouldAddHashSuffixesToGeneratedResources() bool {
// holding customized resources and the data/rules used // holding customized resources and the data/rules used
// to do so. The name back references and vars are // to do so. The name back references and vars are
// not yet fixed. // not yet fixed.
func (kt *KustTarget) AccumulateTarget() ( // nolint: gocyclo func (kt *KustTarget) AccumulateTarget() (
ra *accumulator.ResAccumulator, err error) { ra *accumulator.ResAccumulator, err error) {
// TODO(monopole): Get rid of the KustomizationErrors accumulator. ra = accumulator.MakeEmptyAccumulator()
// It's not consistently used, and complicates tests. err = kt.accumulateResources(ra, kt.kustomization.Bases)
errs := &interror.KustomizationErrors{}
ra, errs = kt.accumulateBases()
resources, err := kt.rFactory.FromFiles(
kt.ldr, kt.kustomization.Resources)
if err != nil { if err != nil {
errs.Append(errors.Wrap(err, "rawResources failed to read Resources")) return nil, errors.Wrap(err, "accumulating bases")
} }
if len(errs.Get()) > 0 { err = kt.accumulateResources(ra, kt.kustomization.Resources)
return ra, errs
}
err = ra.MergeResourcesWithErrorOnIdCollision(resources)
if err != nil { if err != nil {
errs.Append(errors.Wrap(err, "MergeResourcesWithErrorOnIdCollision")) return nil, errors.Wrap(err, "accumulating resources")
} }
tConfig, err := config.MakeTransformerConfig( tConfig, err := config.MakeTransformerConfig(
kt.ldr, kt.kustomization.Configurations) kt.ldr, kt.kustomization.Configurations)
@@ -220,41 +212,46 @@ func (kt *KustTarget) AccumulateTarget() ( // nolint: gocyclo
} }
err = ra.MergeConfig(tConfig) err = ra.MergeConfig(tConfig)
if err != nil { if err != nil {
errs.Append(errors.Wrap(err, "MergeConfig")) return nil, errors.Wrapf(
err, "merging config %v", tConfig)
} }
err = ra.MergeVars(kt.kustomization.Vars) err = ra.MergeVars(kt.kustomization.Vars)
if err != nil { if err != nil {
errs.Append(errors.Wrap(err, "MergeVars")) return nil, errors.Wrapf(
err, "merging vars %v", kt.kustomization.Vars)
} }
crdTc, err := config.LoadConfigFromCRDs(kt.ldr, kt.kustomization.Crds) crdTc, err := config.LoadConfigFromCRDs(kt.ldr, kt.kustomization.Crds)
if err != nil { if err != nil {
errs.Append(errors.Wrap(err, "LoadCRDs")) return nil, errors.Wrapf(
err, "loading CRDs %v", kt.kustomization.Crds)
} }
err = ra.MergeConfig(crdTc) err = ra.MergeConfig(crdTc)
if err != nil { if err != nil {
errs.Append(errors.Wrap(err, "merge CRDs")) return nil, errors.Wrapf(
err, "merging CRDs %v", crdTc)
} }
resMap, err := kt.generateConfigMapsAndSecrets(errs) resMap, err := kt.generateConfigMapsAndSecrets()
if err != nil { if err != nil {
errs.Append(errors.Wrap(err, "generateConfigMapsAndSecrets")) return nil, errors.Wrap(
err, "generating legacy configMaps and secrets")
} }
err = ra.MergeResourcesWithOverride(resMap) err = ra.MergeResourcesWithOverride(resMap)
if err != nil { if err != nil {
return nil, err return nil, errors.Wrap(
err, "merging legacy configMaps and secrets")
} }
if kt.pluginConfig.GoEnabled { if kt.pluginConfig.GoEnabled {
kt.generateFromPlugins(ra, errs) err := kt.generateFromPlugins(ra)
if len(errs.Get()) > 0 { if err != nil {
return ra, errs return nil, err
} }
} }
patches, err := kt.rFactory.RF().SliceFromPatches( patches, err := kt.rFactory.RF().SliceFromPatches(
kt.ldr, kt.kustomization.PatchesStrategicMerge) kt.ldr, kt.kustomization.PatchesStrategicMerge)
if err != nil { if err != nil {
errs.Append(errors.Wrap(err, "SliceFromPatches")) return nil, errors.Wrapf(
} err, "reading strategic merge patches %v",
if len(errs.Get()) > 0 { kt.kustomization.PatchesStrategicMerge)
return nil, errs
} }
t, err := kt.newTransformer(patches, ra.GetTransformerConfig()) t, err := kt.newTransformer(patches, ra.GetTransformerConfig())
if err != nil { if err != nil {
@@ -268,80 +265,97 @@ func (kt *KustTarget) AccumulateTarget() ( // nolint: gocyclo
} }
func (kt *KustTarget) generateFromPlugins( func (kt *KustTarget) generateFromPlugins(
ra *accumulator.ResAccumulator, ra *accumulator.ResAccumulator) error {
errs *interror.KustomizationErrors) {
generators, err := kt.loadGeneratorPlugins() generators, err := kt.loadGeneratorPlugins()
if err != nil { if err != nil {
errs.Append(err) return errors.Wrap(err, "loading generator plugins")
return
} }
for _, g := range generators { for _, g := range generators {
resMap, err := g.Generate() resMap, err := g.Generate()
if err != nil { if err != nil {
errs.Append(err) return errors.Wrapf(err, "generating from %v", g)
} else { }
err = ra.MergeResourcesWithErrorOnIdCollision(resMap) err = ra.MergeResourcesWithErrorOnIdCollision(resMap)
if err != nil { if err != nil {
errs.Append(errors.Wrap(err, "from plugin")) return errors.Wrapf(err, "merging from generator %v", g)
}
} }
} }
return nil
} }
func (kt *KustTarget) generateConfigMapsAndSecrets( func (kt *KustTarget) generateConfigMapsAndSecrets() (resmap.ResMap, error) {
errs *interror.KustomizationErrors) (resmap.ResMap, error) {
cms, err := kt.rFactory.NewResMapFromConfigMapArgs( cms, err := kt.rFactory.NewResMapFromConfigMapArgs(
kt.ldr, kt.ldr,
kt.kustomization.GeneratorOptions, kt.kustomization.GeneratorOptions,
kt.kustomization.ConfigMapGenerator) kt.kustomization.ConfigMapGenerator)
if err != nil { if err != nil {
errs.Append(errors.Wrap(err, "NewResMapFromConfigMapArgs")) return nil, errors.Wrapf(
err, "configmapgenerator: %v", kt.kustomization.ConfigMapGenerator)
} }
secrets, err := kt.rFactory.NewResMapFromSecretArgs( secrets, err := kt.rFactory.NewResMapFromSecretArgs(
kt.ldr, kt.ldr,
kt.kustomization.GeneratorOptions, kt.kustomization.GeneratorOptions,
kt.kustomization.SecretGenerator) kt.kustomization.SecretGenerator)
if err != nil { if err != nil {
errs.Append(errors.Wrap(err, "NewResMapFromSecretArgs")) return nil, errors.Wrapf(
err, "secretgenerator: %v", kt.kustomization.SecretGenerator)
} }
return resmap.MergeWithErrorOnIdCollision(cms, secrets) return resmap.MergeWithErrorOnIdCollision(cms, secrets)
} }
// accumulateBases returns a new ResAccumulator // accumulateResources fills the given resourceAccumulator
// holding customized resources and the data/rules // with resources read from the given list of paths.
// used to customized them from only the _bases_ func (kt *KustTarget) accumulateResources(
// of this KustTarget. ra *accumulator.ResAccumulator, paths []string) error {
func (kt *KustTarget) accumulateBases() ( for _, path := range paths {
ra *accumulator.ResAccumulator, errs *interror.KustomizationErrors) {
errs = &interror.KustomizationErrors{}
ra = accumulator.MakeEmptyAccumulator()
for _, path := range kt.kustomization.Bases {
ldr, err := kt.ldr.New(path) ldr, err := kt.ldr.New(path)
if err != nil { if err == nil {
errs.Append(errors.Wrap(err, "couldn't make loader for "+path)) err = kt.accumulateDirectory(ra, ldr, path)
continue if err != nil {
return err
}
} else {
err = kt.accumulateFile(ra, path)
if err != nil {
return err
}
} }
subKt, err := NewKustTarget(
ldr, kt.rFactory, kt.tFactory, kt.pluginConfig)
if err != nil {
errs.Append(errors.Wrap(err, "couldn't make target for "+path))
ldr.Cleanup()
continue
}
subRa, err := subKt.AccumulateTarget()
if err != nil {
errs.Append(errors.Wrap(err, "AccumulateTarget"))
ldr.Cleanup()
continue
}
err = ra.MergeAccumulator(subRa)
if err != nil {
errs.Append(errors.Wrap(err, path))
}
ldr.Cleanup()
} }
return ra, errs return nil
}
func (kt *KustTarget) accumulateDirectory(
ra *accumulator.ResAccumulator, ldr ifc.Loader, path string) error {
defer ldr.Cleanup()
subKt, err := NewKustTarget(
ldr, kt.rFactory, kt.tFactory, kt.pluginConfig)
if err != nil {
return errors.Wrapf(err, "couldn't make target for path '%s'", path)
}
subRa, err := subKt.AccumulateTarget()
if err != nil {
return errors.Wrapf(
err, "recursed accumulation of path '%s'", path)
}
err = ra.MergeAccumulator(subRa)
if err != nil {
return errors.Wrapf(
err, "recursed merging from path '%s'", path)
}
return nil
}
func (kt *KustTarget) accumulateFile(
ra *accumulator.ResAccumulator, path string) error {
resources, err := kt.rFactory.FromFile(kt.ldr, path)
if err != nil {
return errors.Wrapf(err, "accumulating resources from '%s'", path)
}
err = ra.MergeResourcesWithErrorOnIdCollision(resources)
if err != nil {
return errors.Wrapf(err, "merging resources from '%s'", path)
}
return nil
} }
// newTransformer makes a Transformer that does a collection // newTransformer makes a Transformer that does a collection
@@ -401,21 +415,21 @@ func (kt *KustTarget) newTransformer(
} }
func (kt *KustTarget) loadTransformerPlugins() ([]transformers.Transformer, error) { func (kt *KustTarget) loadTransformerPlugins() ([]transformers.Transformer, error) {
configs, err := kt.rFactory.FromFiles( ra := accumulator.MakeEmptyAccumulator()
kt.ldr, kt.kustomization.Transformers) err := kt.accumulateResources(ra, kt.kustomization.Transformers)
if err != nil { if err != nil {
return nil, err return nil, err
} }
return plugins.NewTransformerLoader( return plugins.NewTransformerLoader(
kt.pluginConfig, kt.ldr, kt.rFactory).Load(configs) kt.pluginConfig, kt.ldr, kt.rFactory).Load(ra.ResMap())
} }
func (kt *KustTarget) loadGeneratorPlugins() ([]transformers.Generator, error) { func (kt *KustTarget) loadGeneratorPlugins() ([]transformers.Generator, error) {
configs, err := kt.rFactory.FromFiles( ra := accumulator.MakeEmptyAccumulator()
kt.ldr, kt.kustomization.Generators) err := kt.accumulateResources(ra, kt.kustomization.Generators)
if err != nil { if err != nil {
return nil, err return nil, err
} }
return plugins.NewGeneratorLoader( return plugins.NewGeneratorLoader(
kt.pluginConfig, kt.ldr, kt.rFactory).Load(configs) kt.pluginConfig, kt.ldr, kt.rFactory).Load(ra.ResMap())
} }