Documentation ¶
Overview ¶
Package composer contains functions for composing components within Zarf packages.
Package composer contains functions for composing components within Zarf packages.
Package composer contains functions for composing components within Zarf packages.
Package composer contains functions for composing components within Zarf packages.
Package composer contains functions for composing components within Zarf packages.
Index ¶
- func CompatibleComponent(c types.ZarfComponent, arch, flavor string) bool
- type ImportChain
- func (ic *ImportChain) Compose() (composed *types.ZarfComponent, err error)
- func (ic *ImportChain) ContainsOCIImport() bool
- func (ic *ImportChain) Head() *Node
- func (ic *ImportChain) MergeConstants(existing []types.ZarfPackageConstant) (merged []types.ZarfPackageConstant)
- func (ic *ImportChain) MergeVariables(existing []types.ZarfPackageVariable) (merged []types.ZarfPackageVariable)
- func (ic *ImportChain) Migrate(build types.ZarfBuildData) (warnings []string)
- func (ic *ImportChain) String() string
- func (ic *ImportChain) Tail() *Node
- type Node
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CompatibleComponent ¶
func CompatibleComponent(c types.ZarfComponent, arch, flavor string) bool
CompatibleComponent determines if this component is compatible with the given create options
Types ¶
type ImportChain ¶
type ImportChain struct {
// contains filtered or unexported fields
}
ImportChain is a doubly linked list of component import definitions
func NewImportChain ¶
func NewImportChain(head types.ZarfComponent, index int, originalPackageName, arch, flavor string) (*ImportChain, error)
NewImportChain creates a new import chain from a component Returning the chain on error so we can have additional information to use during lint
func (*ImportChain) Compose ¶
func (ic *ImportChain) Compose() (composed *types.ZarfComponent, err error)
Compose merges the import chain into a single component fixing paths, overriding metadata, etc
func (*ImportChain) ContainsOCIImport ¶
func (ic *ImportChain) ContainsOCIImport() bool
ContainsOCIImport returns true if the import chain contains a remote import
func (*ImportChain) Head ¶ added in v0.32.0
func (ic *ImportChain) Head() *Node
Head returns the first node in the import chain
func (*ImportChain) MergeConstants ¶
func (ic *ImportChain) MergeConstants(existing []types.ZarfPackageConstant) (merged []types.ZarfPackageConstant)
MergeConstants merges constants from the import chain
func (*ImportChain) MergeVariables ¶
func (ic *ImportChain) MergeVariables(existing []types.ZarfPackageVariable) (merged []types.ZarfPackageVariable)
MergeVariables merges variables from the import chain
func (*ImportChain) Migrate ¶
func (ic *ImportChain) Migrate(build types.ZarfBuildData) (warnings []string)
Migrate performs migrations on the import chain
func (*ImportChain) String ¶
func (ic *ImportChain) String() string
String returns a string representation of the import chain
func (*ImportChain) Tail ¶ added in v0.32.0
func (ic *ImportChain) Tail() *Node
Tail returns the last node in the import chain
type Node ¶
type Node struct { types.ZarfComponent // contains filtered or unexported fields }
Node is a node in the import chain
func (*Node) ImportLocation ¶ added in v0.32.0
ImportLocation gets the path from the base `zarf.yaml` to the imported `zarf.yaml`
func (*Node) ImportName ¶
ImportName returns the name of the component to import If the component import has a ComponentName defined, that will be used otherwise the name of the component will be used
func (*Node) Index ¶ added in v0.32.6
Index returns the .components index location for this node's source `zarf.yaml`
func (*Node) OriginalPackageName ¶ added in v0.32.6
OriginalPackageName returns the .metadata.name for this node's source `zarf.yaml`