Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Chart ¶
type Chart struct {
ID string `json:"-" bson:"_id"`
Name string `json:"name"`
Repo Repo `json:"repo"`
Description string `json:"description"`
Home string `json:"home"`
Keywords []string `json:"keywords"`
Maintainers []chart.Maintainer `json:"maintainers"`
Sources []string `json:"sources"`
Icon string `json:"icon"`
RawIcon []byte `json:"-" bson:"raw_icon"`
ChartVersions []ChartVersion `json:"-"`
}
Chart is a higher-level representation of a chart package
type ChartFiles ¶
ChartFiles holds the README and values for a given chart version
type ChartVersion ¶
type ChartVersion struct {
Version string `json:"version"`
AppVersion string `json:"app_version"`
Created time.Time `json:"created"`
Digest string `json:"digest"`
URLs []string `json:"urls"`
Readme string `json:"readme" bson:"-"`
Values string `json:"values" bson:"-"`
}
ChartVersion is a representation of a specific version of a chart
Click to show internal directories.
Click to hide internal directories.