Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ActionClientGetter ¶
type ActionClientGetter interface {
ActionClientFor(obj client.Object) (ActionInterface, error)
}
func NewActionClientGetter ¶
func NewActionClientGetter(acg ActionConfigGetter) ActionClientGetter
type ActionClientGetterFunc ¶
type ActionClientGetterFunc func(obj client.Object) (ActionInterface, error)
func (ActionClientGetterFunc) ActionClientFor ¶
func (acgf ActionClientGetterFunc) ActionClientFor(obj client.Object) (ActionInterface, error)
type ActionConfigGetter ¶
type ActionConfigGetter interface {
ActionConfigFor(obj client.Object) (*action.Configuration, error)
}
func NewActionConfigGetter ¶
func NewActionConfigGetter(cfg *rest.Config, rm meta.RESTMapper, log logr.Logger) ActionConfigGetter
type ActionInterface ¶
type ActionInterface interface { Get(name string, opts ...GetOption) (*release.Release, error) Install(name, namespace string, chrt *chart.Chart, vals map[string]interface{}, opts ...InstallOption) (*release.Release, error) Upgrade(name, namespace string, chrt *chart.Chart, vals map[string]interface{}, opts ...UpgradeOption) (*release.Release, error) Uninstall(name string, opts ...UninstallOption) (*release.UninstallReleaseResponse, error) Reconcile(rel *release.Release) error }
type InstallOption ¶
type UninstallOption ¶
type UpgradeOption ¶
Click to show internal directories.
Click to hide internal directories.