Versions in this module Expand all Collapse all v0 v0.0.1 Sep 21, 2023 Changes in this version + func GetComputedValues(release string, revision int64, options ...OptionFunc) ([]byte, error) + func GetManifests(release string, revision int64, options ...OptionFunc) ([]byte, error) + func GetNotes(release string, revision int64, options ...OptionFunc) ([]byte, error) + func GetSuppliedValues(release string, revision int64, options ...OptionFunc) ([]byte, error) + type Option struct + AllNamespaces bool + Namespace string + type OptionFunc func(*Option) error + func OnAnyNamespace() OptionFunc + func OnNamespace(namespace string) OptionFunc + type Release struct + AppVersion string + Chart string + Name string + Namespace string + Revision string + Status string + Updated string + type Releases []*Release + func ListReleases(options ...OptionFunc) (Releases, error) + func (r Releases) Get(id string) *Release + func (r Releases) IDs() []string + func (r Releases) SelectOne() (*Release, error) + type Revision struct + AppVersion string + Chart string + Description string + Number int64 + Status string + Updated string + type Revisions []*Revision + func GetHistory(release string, options ...OptionFunc) (Revisions, error) + func UnmarshalHistory(data []byte) (Revisions, error) + func (r *Revisions) Marshal() ([]byte, error) + func (r Revisions) Get(number string) *Revision + func (r Revisions) Numbers() []string + func (r Revisions) SelectMany() (Revisions, error)