Documentation ¶
Index ¶
Constants ¶
View Source
const ChartDir = "charts"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Repo ¶
type Repo interface { // RepoURL returns the public URL of the repo RepoURL() string // IsLocked returns true if the repo is locked IsLocked() bool // Unlock unlocks the repository Unlock() error // Lock locks the repository Lock() error // UploadChart uploads a chart to the bucket UploadChart(fromPath string) error // UploadIndex uploads an index to the bucket UploadIndex(fromPath string) error // HasIndex returns true if this repo has an index object HasIndex() (bool, error) // DownloadIndex downloads an index file locally DownloadIndex(destPath string) error }
Repo supports interactions with GCS-based Helm repositories
Click to show internal directories.
Click to hide internal directories.