mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
feat(libhelm) import libhelm into CE pkg directory [EE-4650] (#8138)
* import libhelm and update some paths * remove file * update readme
This commit is contained in:
parent
9cdc0da615
commit
4fee359247
29 changed files with 1328 additions and 0 deletions
16
pkg/libhelm/helm.go
Normal file
16
pkg/libhelm/helm.go
Normal file
|
@ -0,0 +1,16 @@
|
|||
package libhelm
|
||||
|
||||
import (
|
||||
"github.com/portainer/portainer/pkg/libhelm/options"
|
||||
"github.com/portainer/portainer/pkg/libhelm/release"
|
||||
)
|
||||
|
||||
// HelmPackageManager represents a service that interfaces with Helm
|
||||
type HelmPackageManager interface {
|
||||
Show(showOpts options.ShowOptions) ([]byte, error)
|
||||
SearchRepo(searchRepoOpts options.SearchRepoOptions) ([]byte, error)
|
||||
Get(getOpts options.GetOptions) ([]byte, error)
|
||||
List(listOpts options.ListOptions) ([]release.ReleaseElement, error)
|
||||
Install(installOpts options.InstallOptions) (*release.Release, error)
|
||||
Uninstall(uninstallOpts options.UninstallOptions) error
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue