You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refresh all the repos (helm#470)
Currently if config file have a bad repo and some right repos,
monocualr-api don't get charts from repos and no error message to
user. We should try all the repos.
Refresh chart no longer requires an existing chart in allCharts cache (……helm#461)
* bug fix: in memory allCharts map was not updated on chart refresh
* test for single chart refresh that covers case when a new version is available
* missing delete function in charts mock
* test mock
* chart refresh should be available even if chart does not exist locally
bug fixes: in memory allCharts map was not updated on chart refresh (h……elm#452)
* bug fix: in memory allCharts map was not updated on chart refresh
* test for single chart refresh that covers case when a new version is available
* missing delete function in charts mock
* test mock
refresh single chart draft (helm#447)
* refresh single chart draft
* extra package repohelper + tests
* remove trailing line
* more coverage
* more coverage
fixes fetching relative chart urls from index (helm#388)
* fixes fetching relative chart urls from index
Helm supports repository indexes that use relative URLs to chart
packages (formed by omitting the --url flag in `helm repo index`). This
patch enables Monocular to do the same.
* clarification for possible invalid relative URL
* use raw repo URL string to form url.URL var
When passing the url.URL pointer, we're continuously appending to the
same path. By re-creating the url.URL var each time we ensure we only
append to the base repo URL.