Documentation ¶
Overview ¶
Package sources contains Zarf packager sources
Package sources contains Zarf packager sources ¶
Package sources contains Zarf packager sources
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func New ¶
func New(pkgLocation string, pkgName string, opts zarfTypes.ZarfPackageOptions, sha string) (zarfSources.PackageSource, error)
New creates a new package source based on pkgLocation
Types ¶
type RemoteBundle ¶
type RemoteBundle struct { PkgName string PkgOpts *zarfTypes.ZarfPackageOptions PkgManifestSHA string TmpDir string Remote *oci.OrasRemote // contains filtered or unexported fields }
RemoteBundle is a package source for remote bundles that implements Zarf's packager.PackageSource
func (*RemoteBundle) Collect ¶
func (r *RemoteBundle) Collect(_ string) (string, error)
Collect doesn't need to be implemented
func (*RemoteBundle) LoadPackage ¶
func (r *RemoteBundle) LoadPackage(dst *layout.PackagePaths, unarchiveAll bool) error
LoadPackage loads a Zarf package from a remote bundle
func (*RemoteBundle) LoadPackageMetadata ¶
func (r *RemoteBundle) LoadPackageMetadata(dst *layout.PackagePaths, _ bool, _ bool) (err error)
LoadPackageMetadata loads a Zarf package's metadata from a remote bundle
type TarballBundle ¶
type TarballBundle struct { PkgOpts *zarfTypes.ZarfPackageOptions PkgManifestSHA string TmpDir string BundleLocation string PkgName string // contains filtered or unexported fields }
TarballBundle is a package source for local tarball bundles that implements Zarf's packager.PackageSource
func (*TarballBundle) Collect ¶
func (t *TarballBundle) Collect(_ string) (string, error)
Collect doesn't need to be implemented
func (*TarballBundle) LoadPackage ¶
func (t *TarballBundle) LoadPackage(dst *layout.PackagePaths, unarchiveAll bool) error
LoadPackage loads a Zarf package from a local tarball bundle
func (*TarballBundle) LoadPackageMetadata ¶
func (t *TarballBundle) LoadPackageMetadata(dst *layout.PackagePaths, _ bool, _ bool) (err error)
LoadPackageMetadata loads a Zarf package's metadata from a local tarball bundle