ChartMuseum v0.2.0
Basic auth, HTTPS, and --gen-index
!
Thanks to @pmwebster's generous contributions, we now support both basic auth and HTTPS!
If both of the following options are provided, basic http authentication will protect all routes:
--basic-auth-user=<user>
- username for basic http authentication--basic-auth-pass=<pass>
- password for basic http authentication
If both of the following options are provided, the server will listen and serve HTTPS:
--tls-cert=<crt>
- path to tls certificate chain file--tls-key=<key>
- path to tls key file
Also new is the --gen-index
flag. You can specify the --gen-index
option if you only wish to use ChartMuseum to generate your index.yaml file.
The contents of index.yaml will be printed to stdout and the program will exit. This is useful if you are satisfied with your current Helm CI/CD process and/or don't want to monitor another webservice.
Big thanks to the Helm community for the continued support!