mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-24 11:48:04 +00:00
* Object model with self-sufficient binary (#131) * Code cosmetics * Experimenting with object model and direct HELM usage * Experiment with object model * replacing the kubectl * Progressing * Save the progress * Able to start with migration in mind * Migrated two pieces * List releases via Helm * Forgotten field * Cristallized the problem of ctx switcher * Reworked to multi-context * Rollback is also new style * More migration * Refactoring * Describe via code * Bye-bye kubectl binary * Eliminate more old code * Refactor a bit * Merges * No binaries in dockerfile * Commit * Progress with getting the data * Learned the thing about get * One field less * Sstart with repos * Repo add * repo remove * Repos! Icons! * Simplified access to data * Ver listing works * Ver check works * Caching and values * fixup * Done with repos * Working on install * Install work-ish * Fix UI failing on install * Upgrade flow works * Fix image building * Remove outdated test file * Move files around * REfactorings * Cosmetics * Test for cache control (#151) * Files import formatted * Added go-test tools * Added test for no-cache header * added changes * test for cache behaviour of app * test for static route (#153) * Tests: route configuration & context setter (#154) * Test for route configuration * Test for context setter middleware * implemented changes * Restore coverage profile Fixes #156 * Cosmetics * Test for `NewRouter` function (#157) * Test for `configureScanners` (#158) * Test for `configureKubectls` (#163) * Test for repository loading (#169) - Created `repos_test.go` - Test: `Load()` of Repositories * Build all PRs * Fixes failing test (#171) * Fixes failing test - Fixes failing test of repo loading * handles error for * Did some changes * Test for listing of repos (#173) - and did some code formatting Signed-off-by: OmAxiani0 <aximaniom@gmail.com> Signed-off-by: OmAxiani0 <aximaniom@gmail.com> * Test for adding repo (#175) - Modified the `repositories.yml` file Signed-off-by: OmAxiani0 <aximaniom@gmail.com> Signed-off-by: OmAxiani0 <aximaniom@gmail.com> * Test for deleting the repository (#176) * Test for deleting the repository - Also added cleanup function for `TestAdd` * Fixes failing test * Add auto labeler for PR's (#174) * Add auto labeler for PR's * Add all file under .github/workflow to 'ci' label Co-authored-by: Harshit Mehta <harshitm@nvidia.com> * Test for getting repository (#177) * Add github workflow for auto PR labeling (#181) Co-authored-by: Harshit Mehta <harshitm@nvidia.com> * Stub compilation * Fixes around installing * More complex test * Using object model to execute helm test (#191) * Expand test * More test * Coverage * Add mutex for operations * Rectore cluster detection code * Change receiver to pointer * Support multiple namespaces * Cosmetics * Update repos periodically * fix tests * Fix error display * Allow reconfiguring chart without repo * mute linter * Cosmetics * Failing approach to parse manifests Relates to #30 * Report the error properly * ✅ Add test for dashboard/objects/data.go NewDataLayer (#199) * Fix problem of wrong namespace * Added unit tests for releases (#204) * Rework API routes (#197) * Bootstrap OpenAPI doc * Renaming some routes * Listing namespaces * k8s part of things * Repositories section * Document scanners API * One more API call * Progress * Reworked install flow * History endpoint * Textual info section * Resources endpoint * Rollback endpoint * Rollback endpoint * Unit tests * Cleanup * Forgotten tags * Fix tests * TODOs * Rework manifest scanning * add hasTests flag * Adding more information on UI for helm test API response (#195) * Hide test button when no tests Fixes #115 Improves #195 --------- Signed-off-by: OmAxiani0 <aximaniom@gmail.com> Co-authored-by: Om Aximani <75031769+OmAximani0@users.noreply.github.com> Co-authored-by: Harshit Mehta <hdm23061993@gmail.com> Co-authored-by: Harshit Mehta <harshitm@nvidia.com> Co-authored-by: Todd Turner <todd@toddtee.sh> Co-authored-by: arvindsundararajan98 <109727359+arvindsundararajan98@users.noreply.github.com>
313 lines
7.5 KiB
Go
313 lines
7.5 KiB
Go
package objects
|
|
|
|
import (
|
|
"github.com/joomcode/errorx"
|
|
"github.com/pkg/errors"
|
|
log "github.com/sirupsen/logrus"
|
|
"helm.sh/helm/v3/pkg/action"
|
|
"helm.sh/helm/v3/pkg/chart"
|
|
"helm.sh/helm/v3/pkg/chart/loader"
|
|
"helm.sh/helm/v3/pkg/cli"
|
|
"helm.sh/helm/v3/pkg/getter"
|
|
"helm.sh/helm/v3/pkg/helmpath"
|
|
"helm.sh/helm/v3/pkg/repo"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"sync"
|
|
)
|
|
|
|
const AnnRepo = "helm-dashboard/repository-name"
|
|
|
|
type Repositories struct {
|
|
Settings *cli.EnvSettings
|
|
HelmConfig *action.Configuration
|
|
mx sync.Mutex
|
|
}
|
|
|
|
func (r *Repositories) Load() (*repo.File, error) {
|
|
r.mx.Lock()
|
|
defer r.mx.Unlock()
|
|
|
|
// copied from cmd/helm/repo_list.go
|
|
f, err := repo.LoadFile(r.Settings.RepositoryConfig)
|
|
if err != nil && !isNotExist(err) {
|
|
return nil, errorx.Decorate(err, "failed to load repository list")
|
|
}
|
|
return f, nil
|
|
}
|
|
|
|
func (r *Repositories) List() ([]*Repository, error) {
|
|
f, err := r.Load()
|
|
if err != nil {
|
|
return nil, errorx.Decorate(err, "failed to load repo information")
|
|
}
|
|
|
|
res := []*Repository{}
|
|
for _, item := range f.Repositories {
|
|
res = append(res, &Repository{
|
|
Settings: r.Settings,
|
|
Orig: item,
|
|
})
|
|
}
|
|
|
|
return res, nil
|
|
}
|
|
|
|
func (r *Repositories) Add(name string, url string) error {
|
|
if name == "" || url == "" {
|
|
return errors.New("Name and URL are required parameters to add the repository")
|
|
}
|
|
|
|
// copied from cmd/helm/repo_add.go
|
|
repoFile := r.Settings.RepositoryConfig
|
|
|
|
// Ensure the file directory exists as it is required for file locking
|
|
err := os.MkdirAll(filepath.Dir(repoFile), os.ModePerm)
|
|
if err != nil && !os.IsExist(err) {
|
|
return err
|
|
}
|
|
|
|
f, err := r.Load()
|
|
if err != nil {
|
|
return errorx.Decorate(err, "Failed to load repo config")
|
|
}
|
|
|
|
r.mx.Lock()
|
|
defer r.mx.Unlock()
|
|
|
|
c := repo.Entry{
|
|
Name: name,
|
|
URL: url,
|
|
//Username: o.username,
|
|
//Password: o.password,
|
|
//PassCredentialsAll: o.passCredentialsAll,
|
|
//CertFile: o.certFile,
|
|
//KeyFile: o.keyFile,
|
|
//CAFile: o.caFile,
|
|
//InsecureSkipTLSverify: o.insecureSkipTLSverify,
|
|
}
|
|
|
|
// Check if the repo name is legal
|
|
if strings.Contains(c.Name, "/") {
|
|
return errors.Errorf("repository name (%s) contains '/', please specify a different name without '/'", c.Name)
|
|
}
|
|
|
|
rep, err := repo.NewChartRepository(&c, getter.All(r.Settings))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := rep.DownloadIndexFile(); err != nil {
|
|
return errors.Wrapf(err, "looks like %q is not a valid chart repository or cannot be reached", url)
|
|
}
|
|
|
|
f.Update(&c)
|
|
|
|
if err := f.WriteFile(repoFile, 0644); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (r *Repositories) Delete(name string) error {
|
|
f, err := r.Load()
|
|
if err != nil {
|
|
return errorx.Decorate(err, "failed to load repo information")
|
|
}
|
|
|
|
r.mx.Lock()
|
|
defer r.mx.Unlock()
|
|
|
|
// copied from cmd/helm/repo_remove.go
|
|
if !f.Remove(name) {
|
|
return errors.Errorf("no repo named %q found", name)
|
|
}
|
|
if err := f.WriteFile(r.Settings.RepositoryConfig, 0644); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := removeRepoCache(r.Settings.RepositoryCache, name); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (r *Repositories) Get(name string) (*Repository, error) {
|
|
f, err := r.Load()
|
|
if err != nil {
|
|
return nil, errorx.Decorate(err, "failed to load repo information")
|
|
}
|
|
|
|
for _, entry := range f.Repositories {
|
|
if entry.Name == name {
|
|
return &Repository{
|
|
Settings: r.Settings,
|
|
Orig: entry,
|
|
}, nil
|
|
}
|
|
}
|
|
|
|
return nil, errorx.DataUnavailable.New("Could not find reposiroty '%s'", name)
|
|
}
|
|
|
|
func (r *Repositories) Containing(name string) (repo.ChartVersions, error) {
|
|
list, err := r.List()
|
|
if err != nil {
|
|
return nil, errorx.Decorate(err, "failed to get list of repos")
|
|
}
|
|
|
|
res := repo.ChartVersions{}
|
|
for _, rep := range list {
|
|
vers, err := rep.ByName(name)
|
|
if err != nil {
|
|
log.Warnf("Failed to get data from repo '%s', updating it might help", rep.Orig.Name)
|
|
log.Debugf("The error was: %v", err)
|
|
continue
|
|
}
|
|
|
|
for _, v := range vers {
|
|
// just using annotations here to attach a bit of information to the object
|
|
// it has nothing to do with k8s annotations and should not get into manifests
|
|
if v.Annotations == nil {
|
|
v.Annotations = map[string]string{}
|
|
}
|
|
|
|
v.Annotations[AnnRepo] = rep.Orig.Name
|
|
}
|
|
|
|
res = append(res, vers...) // TODO filter dev versions here, relates to #139
|
|
}
|
|
return res, nil
|
|
}
|
|
|
|
func (r *Repositories) GetChart(chart string, ver string) (*chart.Chart, error) {
|
|
// TODO: unused method?
|
|
client := action.NewShowWithConfig(action.ShowAll, r.HelmConfig)
|
|
client.Version = ver
|
|
|
|
cp, err := client.ChartPathOptions.LocateChart(chart, r.Settings)
|
|
if err != nil {
|
|
return nil, errorx.Decorate(err, "failed to locate chart '%s'", chart)
|
|
}
|
|
|
|
chrt, err := loader.Load(cp)
|
|
if err != nil {
|
|
return nil, errorx.Decorate(err, "failed to load chart from '%s'", cp)
|
|
}
|
|
|
|
return chrt, nil
|
|
}
|
|
|
|
func (r *Repositories) GetChartValues(chart string, ver string) (string, error) {
|
|
// comes from cmd/helm/show.go
|
|
client := action.NewShowWithConfig(action.ShowValues, r.HelmConfig)
|
|
client.Version = ver
|
|
|
|
cp, err := client.ChartPathOptions.LocateChart(chart, r.Settings)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
out, err := client.Run(cp)
|
|
if err != nil {
|
|
return "", errorx.Decorate(err, "failed to get values for chart '%s'", chart)
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
type Repository struct {
|
|
Settings *cli.EnvSettings
|
|
Orig *repo.Entry
|
|
mx sync.Mutex
|
|
}
|
|
|
|
func (r *Repository) indexFileName() string {
|
|
return filepath.Join(r.Settings.RepositoryCache, helmpath.CacheIndexFile(r.Orig.Name))
|
|
}
|
|
|
|
func (r *Repository) getIndex() (*repo.IndexFile, error) {
|
|
r.mx.Lock()
|
|
defer r.mx.Unlock()
|
|
|
|
f := r.indexFileName()
|
|
ind, err := repo.LoadIndexFile(f)
|
|
if err != nil {
|
|
return nil, errorx.Decorate(err, "Repo index is corrupt or missing. Try updating repo")
|
|
}
|
|
|
|
ind.SortEntries()
|
|
return ind, nil
|
|
}
|
|
|
|
func (r *Repository) Charts() ([]*repo.ChartVersion, error) {
|
|
ind, err := r.getIndex()
|
|
if err != nil {
|
|
return nil, errorx.Decorate(err, "failed to get repo index")
|
|
}
|
|
|
|
res := []*repo.ChartVersion{}
|
|
for _, v := range ind.Entries {
|
|
if len(v) > 0 { // TODO filter dev versions here, relates to #139
|
|
res = append(res, v[0])
|
|
}
|
|
}
|
|
|
|
return res, nil
|
|
}
|
|
|
|
func (r *Repository) ByName(name string) (repo.ChartVersions, error) {
|
|
ind, err := r.getIndex()
|
|
if err != nil {
|
|
return nil, errorx.Decorate(err, "failed to get repo index")
|
|
}
|
|
|
|
nx, ok := ind.Entries[name]
|
|
if ok {
|
|
return nx, nil
|
|
}
|
|
return repo.ChartVersions{}, nil
|
|
}
|
|
|
|
func (r *Repository) Update() error {
|
|
r.mx.Lock()
|
|
defer r.mx.Unlock()
|
|
log.Infof("Updating repository: %s", r.Orig.Name)
|
|
|
|
// from cmd/helm/repo_update.go
|
|
|
|
// TODO: make this object to be an `Orig`?
|
|
rep, err := repo.NewChartRepository(r.Orig, getter.All(r.Settings))
|
|
if err != nil {
|
|
return errorx.Decorate(err, "could not create repository object")
|
|
}
|
|
rep.CachePath = r.Settings.RepositoryCache
|
|
|
|
_, err = rep.DownloadIndexFile()
|
|
if err != nil {
|
|
return errorx.Decorate(err, "failed to download repo index file")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// copied from cmd/helm/repo.go
|
|
func isNotExist(err error) bool {
|
|
return os.IsNotExist(errors.Cause(err))
|
|
}
|
|
|
|
// copied from cmd/helm/repo_remove.go
|
|
func removeRepoCache(root, name string) error {
|
|
idx := filepath.Join(root, helmpath.CacheChartsFile(name))
|
|
if _, err := os.Stat(idx); err == nil {
|
|
_ = os.Remove(idx)
|
|
}
|
|
|
|
idx = filepath.Join(root, helmpath.CacheIndexFile(name))
|
|
if _, err := os.Stat(idx); os.IsNotExist(err) {
|
|
return nil
|
|
} else if err != nil {
|
|
return errors.Wrapf(err, "can't remove index file %s", idx)
|
|
}
|
|
return os.Remove(idx)
|
|
}
|