Skip to content

ChartMuseum v0.1.2

Compare
Choose a tag to compare
@jdolitsky jdolitsky released this 08 Oct 19:19

2 new CLI flags have been added:

  • --disable-api - disable all routes prefixed with /api
  • --chart-url=<url> - absolute url for .tgzs in index.yaml

--disable-api should be used if you're only using ChartMuseum for fetching index.yaml and .tgz/.prov files and plan to use other methods for getting your packages to storage (e.g. awscli).

Specifying --disable-api will cause all /api routes to return a 404.

--chart-url can used if you want absolute URLs listed in index.yaml.

Specifying --chart-url=https://mycharts.net will change the contents of index.yaml from

...
    urls:
    - charts/chartmuseum-0.1.0.tgz
...

to

...
    urls:
    - https://mycharts.net/charts/chartmuseum-0.1.0.tgz
...