Documentation ¶
Index ¶
- Constants
- func AddCRDValidationToChart(fs billy.Filesystem, ...) error
- func CheckRCCharts() map[string][]string
- func GenerateCRDChartFromTemplate(fs billy.Filesystem, dstHelmChartPath, templateDir, crdsDir string) error
- func GetDependencyMap(pkgFs billy.Filesystem, gcRootDir string) (map[string]*Chart, error)
- func GetUpstream(opt options.UpstreamOptions) (puller.Puller, error)
- func ListPackages(repoRoot string, specificPackage string) ([]string, error)
- func LoadDependencies(pkgFs billy.Filesystem, mainHelmChartPath string, gcRootDir string, ...) error
- func PrepareDependencies(rootFs, pkgFs billy.Filesystem, mainHelmChartPath string, gcRootDir string, ...) error
- func RemoveCRDValidationFromChart(fs billy.Filesystem, helmChartPath string) error
- func UpdateHelmMetadataWithDependencies(fs billy.Filesystem, mainHelmChartPath string, dependencyMap map[string]*Chart) error
- type AdditionalChart
- func (c *AdditionalChart) ApplyMainChanges(pkgFs billy.Filesystem) error
- func (c *AdditionalChart) GenerateChart(rootFs, pkgFs billy.Filesystem, packageVersion *int, version *semver.Version, ...) error
- func (c *AdditionalChart) GeneratePatch(rootFs, pkgFs billy.Filesystem) error
- func (c *AdditionalChart) GeneratedChangesRootDir() string
- func (c *AdditionalChart) OriginalDir() string
- func (c *AdditionalChart) Prepare(rootFs, pkgFs billy.Filesystem, mainChartUpstreamVersion *string) error
- func (c *AdditionalChart) RevertMainChanges(pkgFs billy.Filesystem) error
- type Chart
- func (c *Chart) GenerateChart(rootFs, pkgFs billy.Filesystem, packageVersion *int, version *semver.Version, ...) error
- func (c *Chart) GeneratePatch(rootFs, pkgFs billy.Filesystem) error
- func (c *Chart) GeneratedChangesRootDir() string
- func (c *Chart) OriginalDir() string
- func (c *Chart) Prepare(rootFs, pkgFs billy.Filesystem) error
- type Local
- type LocalPackage
- type Package
Constants ¶
const ValidateInstallCRDContentsFmt = `` /* 496-byte string literal not displayed */
ValidateInstallCRDContentsFmt is the format for the contents of ChartValidateInstallCRDFile
const ValidateInstallCRDPerGVKFmt = `# {{- set $found "%s" false -}}`
ValidateInstallCRDPerGVKFmt is the format that the GroupVersionKind of each CRD placed in ValidateInstallCRDContentsFmt needs to have
Variables ¶
This section is empty.
Functions ¶
func AddCRDValidationToChart ¶
func AddCRDValidationToChart(fs billy.Filesystem, helmChartPathWithoutCRDs, helmChartPathWithCRDs, crdsDir string) error
AddCRDValidationToChart adds the validate-install-crd.yaml to helmChartPathWithoutCRDs based on CRDs located in crdsDir within helmChartPathWithCRDs
func CheckRCCharts ¶ added in v0.4.9
CheckRCCharts checks for any charts that have RC versions
func GenerateCRDChartFromTemplate ¶
func GenerateCRDChartFromTemplate(fs billy.Filesystem, dstHelmChartPath, templateDir, crdsDir string) error
GenerateCRDChartFromTemplate copies templateDir over to dstPath
func GetDependencyMap ¶
GetDependencyMap gets a map between a dependency's name and a Chart representing that dependency for all rooted at gcRootDir
func GetUpstream ¶
func GetUpstream(opt options.UpstreamOptions) (puller.Puller, error)
GetUpstream returns the appropriate Upstream given the options provided
func ListPackages ¶ added in v0.3.0
func LoadDependencies ¶
func LoadDependencies(pkgFs billy.Filesystem, mainHelmChartPath string, gcRootDir string, ignoreDependencyMap map[string]bool) error
LoadDependencies takes all existing subcharts in the package and loads them into the gcRootDir as dependencies
func PrepareDependencies ¶
func PrepareDependencies(rootFs, pkgFs billy.Filesystem, mainHelmChartPath string, gcRootDir string, ignoreDependencies []string) error
PrepareDependencies prepares all of the dependencies of a given chart and regenerates the requirements.yaml or Chart.yaml
func RemoveCRDValidationFromChart ¶
RemoveCRDValidationFromChart removes the ChartValidateInstallCRDFile from a given chart
func UpdateHelmMetadataWithDependencies ¶
func UpdateHelmMetadataWithDependencies(fs billy.Filesystem, mainHelmChartPath string, dependencyMap map[string]*Chart) error
UpdateHelmMetadataWithDependencies updates either the requirements.yaml or Chart.yaml for the dependencies provided For each dependency in dependencies, it will replace the entry in the requirements.yaml / Chart.yaml with a URL pointing to the local chart archive
Types ¶
type AdditionalChart ¶
type AdditionalChart struct { // WorkingDir represents the working directory of this chart WorkingDir string `yaml:"workingDir" default:"charts"` // Upstream represents any options that are configurable for upstream charts Upstream *puller.Puller `yaml:"upstream"` // CRDChartOptions represents any options that are configurable for CRD charts CRDChartOptions *options.CRDChartOptions `yaml:"crdChart"` // IgnoreDependencies drops certain dependencies from the list that is parsed from upstream IgnoreDependencies []string `yaml:"ignoreDependencies"` // ReplacePaths marks paths as those that should be replaced instead of patches. Consequently, these paths will exist in both generated-changes/excludes and generated-changes/overlay ReplacePaths []string `yaml:"replacePaths"` // contains filtered or unexported fields }
AdditionalChart represents any additional charts packaged along with the main chart in a package
func GetAdditionalChartFromOptions ¶
func GetAdditionalChartFromOptions(opt options.AdditionalChartOptions) (AdditionalChart, error)
GetAdditionalChartFromOptions returns an AdditionalChart based on the options provided
func (*AdditionalChart) ApplyMainChanges ¶
func (c *AdditionalChart) ApplyMainChanges(pkgFs billy.Filesystem) error
ApplyMainChanges applies any changes on the main chart introduced by the AdditionalChart
func (*AdditionalChart) GenerateChart ¶
func (c *AdditionalChart) GenerateChart(rootFs, pkgFs billy.Filesystem, packageVersion *int, version *semver.Version, omitBuildMetadataOnExport bool) error
GenerateChart generates the chart and stores it in the assets and charts directory
func (*AdditionalChart) GeneratePatch ¶
func (c *AdditionalChart) GeneratePatch(rootFs, pkgFs billy.Filesystem) error
GeneratePatch generates a patch on a forked Helm chart based on local changes
func (*AdditionalChart) GeneratedChangesRootDir ¶
func (c *AdditionalChart) GeneratedChangesRootDir() string
GeneratedChangesRootDir stored the directory rooted at the package level where generated changes for this chart can be found
func (*AdditionalChart) OriginalDir ¶
func (c *AdditionalChart) OriginalDir() string
OriginalDir returns a working directory where we can place the original chart from upstream
func (*AdditionalChart) Prepare ¶
func (c *AdditionalChart) Prepare(rootFs, pkgFs billy.Filesystem, mainChartUpstreamVersion *string) error
Prepare pulls in a package based on the spec to the local git repository
func (*AdditionalChart) RevertMainChanges ¶
func (c *AdditionalChart) RevertMainChanges(pkgFs billy.Filesystem) error
RevertMainChanges reverts any changes on the main chart introduced by the AdditionalChart
type Chart ¶
type Chart struct { // Upstream represents where the chart is sourced from Upstream puller.Puller `yaml:"upstream"` // WorkingDir represents the working directory of this chart WorkingDir string `yaml:"workingDir" default:"charts"` // IgnoreDependencies drops certain dependencies from the list that is parsed from upstream IgnoreDependencies []string `yaml:"ignoreDependencies"` // ReplacePaths marks paths as those that should be replaced instead of patches. Consequently, these paths will exist in both generated-changes/excludes and generated-changes/overlay ReplacePaths []string `yaml:"replacePaths"` // contains filtered or unexported fields }
Chart represents the main chart in a given package
func GetChartFromOptions ¶
func GetChartFromOptions(opt options.ChartOptions) (Chart, error)
GetChartFromOptions returns a Chart based on the options provided
func (*Chart) GenerateChart ¶
func (c *Chart) GenerateChart(rootFs, pkgFs billy.Filesystem, packageVersion *int, version *semver.Version, omitBuildMetadataOnExport bool) error
GenerateChart generates the chart and stores it in the assets and charts directory
func (*Chart) GeneratePatch ¶
GeneratePatch generates a patch on a forked Helm chart based on local changes
func (*Chart) GeneratedChangesRootDir ¶
GeneratedChangesRootDir stored the directory rooted at the package level where generated changes for this chart can be found
func (*Chart) OriginalDir ¶
OriginalDir returns a working directory where we can place the original chart from upstream
type Local ¶
type Local struct{}
Local represents a local chart that exists within the package itself
func (Local) GetOptions ¶
func (u Local) GetOptions() options.UpstreamOptions
GetOptions returns the path used to construct this upstream
func (Local) IsWithinPackage ¶
IsWithinPackage returns whether this upstream already exists within the package
type LocalPackage ¶
type LocalPackage struct { // Name represents the name of the package Name string Subdirectory *string }
LocalPackage represents source that is a package
func (LocalPackage) GetOptions ¶
func (u LocalPackage) GetOptions() options.UpstreamOptions
GetOptions returns the path used to construct this upstream
func (LocalPackage) IsWithinPackage ¶
func (u LocalPackage) IsWithinPackage() bool
IsWithinPackage returns whether this upstream already exists within the package
func (LocalPackage) Pull ¶
func (u LocalPackage) Pull(rootFs, fs billy.Filesystem, path string) error
Pull grabs the package
func (LocalPackage) String ¶
func (u LocalPackage) String() string
type Package ¶
type Package struct { Chart `yaml:",inline"` // Name is the name of the package Name string `yaml:"name"` // Version represents the version of the package. It will override other values if it exists Version *semver.Version `yaml:"version,omitempty"` // PackageVersion represents the current version of the package. It needs to be incremented whenever there are changes PackageVersion *int `yaml:"packageVersion"` // AdditionalCharts are other charts that should be packaged together with this AdditionalCharts []*AdditionalChart `yaml:"additionalCharts,omitempty"` // DoNotRelease represents a boolean flag that indicates a package should not be tracked in make charts DoNotRelease bool `yaml:"doNotRelease,omitempty"` // contains filtered or unexported fields }
Package represents the configuration of a particular forked Helm chart
func GetPackage ¶
GetPackage returns a Package based on the options provided
func GetPackages ¶
GetPackages returns all packages found within the repository. If there is a specific package provided, it will return just that Package in the list
func (*Package) Clean ¶
Clean removes all other files except for the package.yaml, patch, and overlay/ files from a package
func (*Package) DownloadIcon ¶ added in v0.5.5
DownloadIcon Downloads the icon from the charts.yaml file to the assets/logos folder and changes the chart.yaml file to use it
func (*Package) GenerateCharts ¶
GenerateCharts creates Helm chart archives for each chart after preparing it
func (*Package) GeneratePatch ¶
GeneratePatch generates a patch on a forked Helm chart based on local changes