* Bump version to prep for 0.16.2
Signed-off-by: Casey Buto <cbuto22@gmail.com>
* use released version in README
Signed-off-by: Casey Buto <cbuto22@gmail.com>
---------
Signed-off-by: Casey Buto <cbuto22@gmail.com>
* feat: Add support for hosting an artifacthub-repo.yml file
Signed-off-by: Casey Buto <cbuto@d2iq.com>
* feat: Add multitenancy support for artifacthub
Signed-off-by: Casey Buto <cbuto@d2iq.com>
* refactor: check if map is empty before adding the route
Signed-off-by: Casey Buto <cbuto@d2iq.com>
* feature add chart template and value api
Signed-off-by: zerohzz <zzhzero@qq.com>
* fix latest chart get template and value
Signed-off-by: zerohzz <zzhzero@qq.com>
* fix template value style and test http code
Signed-off-by: zerohzz <zzhzero@qq.com>
* break redundant loop
Signed-off-by: zzhzero <zzhzero@qq.com>
* refactor: remove disablemetrics for enablemetrics
Signed-off-by: nerdeveloper <odirionye@gmail.com>
* chore: set defaults to true as it does the reverse in the config
Signed-off-by: nerdeveloper <odirionye@gmail.com>
* chore: make defaults cleaner
Signed-off-by: nerdeveloper <odirionye@gmail.com>
* docs: update docs on the prometheus metrics
Signed-off-by: nerdeveloper <odirionye@gmail.com>
* chore: fix typo
Signed-off-by: nerdeveloper <odirionye@gmail.com>
- Update version to v0.14.0
- Fix readme for push plugin (in place of #513)
- Upgrade Go modules, Go version in CI
- Use Helm 3.8 in acceptance tests
- Remove bad semever chart tests and testdata
- Support for M1 Macs local dev
- Add SECURITY.md
Signed-off-by: Josh Dolitsky <josh@dolit.ski>
The README says the conversion between flag name / env var name
and the key used for file-based configuration is simple replacement
of _ with . -- this is not true in many, if not most, cases
(not just the STORAGE flag).
This is demonstrated even in the example that immediately follows
the text: authrealm, not auth.realm for AUTH_REALM, bearerauth for
BEARER_AUTH, and so on.
Further confounding the user, there is no indication (even with debug
on) that the config file contains keys that don't map to any flags.
Signed-off-by: Max Timchenko <max.timchenko@tonal.com>
- update to Go 1.15.7
- add release artifacts script (copied from Helm)
- add KEYS file containing maintainer signing keys
- update Makefile to follow Helm release process
- update dependencies (including auth and storage)
- rename masterHandler to rootHandler
- add get-chartmuseum script (based on get-helm-3 script)
- remove unused scripts and make targets for old release process
- modify README with new install instructions and docker image
- rename scripts to use dashes vs underscores
Signed-off-by: Josh Dolitsky <josh@dolit.ski>
- Add info to README
- Turn off by default
- Fix issue with hanging deletes
- Reorganize/rename code
- Verify functionality
- Make unit tests pass
Signed-off-by: jdolitsky <393494+jdolitsky@users.noreply.github.com>
It may be desirable to limit destructive operations like the DELETE
route.
This change introduces another setting for disabling the destructive
delete route. It is inactive by default (hence the negated bool var
name), so it is backward compatible.
Signed-off-by: davidovich <david.genest@gmail.com>