func LoadConfigFromCRDs( ldr ifc.Loader, paths []string) (*builtinconfig.TransformerConfig, error)
LoadConfigFromCRDs parse CRD schemas from paths into a TransformerConfig
OpenAPIDefinition describes single type. Normally these definitions are auto-generated using gen-openapi. Same as in k8s.io / kube-openapi / pkg / common.
type OpenAPIDefinition struct { Schema spec.Schema Dependencies []string }
ResAccumulator accumulates resources and the rules used to customize those resources. It's a ResMap plus stuff needed to modify the ResMap.
type ResAccumulator struct {
// contains filtered or unexported fields
}
func MakeEmptyAccumulator() *ResAccumulator
func (ra *ResAccumulator) AbsorbAll(resources resmap.ResMap) error
func (ra *ResAccumulator) AppendAll(resources resmap.ResMap) error
func (ra *ResAccumulator) FixBackReferences() (err error)
func (ra *ResAccumulator) GetTransformerConfig() *builtinconfig.TransformerConfig
func (ra *ResAccumulator) Intersection(other resmap.ResMap) error
Intersection drops the resources which "other" does not have.
func (ra *ResAccumulator) MergeAccumulator(other *ResAccumulator) (err error)
func (ra *ResAccumulator) MergeConfig( tConfig *builtinconfig.TransformerConfig) (err error)
func (ra *ResAccumulator) MergeVars(incoming []types.Var) error
MergeVars accumulates vars into ResAccumulator. A Var is a tuple of name, object reference and field reference. This func takes a list of vars from the current kustomization file and annotates the accumulated resources with the names of the vars that match those resources. E.g. if there's a var named "sam" that wants to get its data from a ConfigMap named "james", and the resource list contains a ConfigMap named "james", then that ConfigMap will be annotated with the var name "sam". Later this annotation is used to find the data for "sam" by digging into a particular fieldpath of "james".
func (ra *ResAccumulator) ResMap() resmap.ResMap
ResMap returns a copy of the internal resMap.
func (ra *ResAccumulator) ResolveVars() error
func (ra *ResAccumulator) Transform(t resmap.Transformer) error
func (ra *ResAccumulator) Vars() []types.Var
Vars returns a copy of underlying vars.