Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Publisher ¶
type Publisher interface { // ChartDir returns the path where new chart packages should be copied for upload ChartDir() string // Index returns a queryable copy of th eindex that is currently in the Helm repo bucket Index() index.Index // Publish uploads all charts in the chart directory to the target Helm repo. // Can only be called once for a given publisher instance! Publish() (count int, err error) // Close unlocks the repo and releases all resources associated with this publisher Close() error }
Publisher is a utility for publishing Helm charts to a GCS bucket-hosted Helm repository.
Click to show internal directories.
Click to hide internal directories.