| 8 | // Client is the client interface for helm |
| 9 | type Client interface { |
| 10 | DownloadChart(ctx devspacecontext.Context, helmConfig *latest.HelmConfig) (string, error) |
| 11 | InstallChart(ctx devspacecontext.Context, releaseName string, releaseNamespace string, values map[string]interface{}, helmConfig *latest.HelmConfig) (*Release, error) |
| 12 | Template(ctx devspacecontext.Context, releaseName, releaseNamespace string, values map[string]interface{}, helmConfig *latest.HelmConfig) (string, error) |
| 13 | DeleteRelease(ctx devspacecontext.Context, releaseName string, releaseNamespace string) error |