View charts in a Helm repository¶
View charts in a Helm repository using either the MSR API or the MSR web UI.
Viewing charts with the MSR API¶
To view charts that have been pushed to a Helm repository using the MSR API, consider the following options:
| Option | CLI command | 
|---|---|
| View the index file | curl --request GET
https://<msrhost>/charts/<namespace>/<reponame>/index.yaml -u
<username>:<password> --cacert ca.crt
 | 
| View a paginated list of all charts | curl --request GET
https://<msrhost>/charts/<namespace>/<reponame>/index.yaml -u
<username>:<password> --cacert ca.crt
 | 
| View a paginated list of chart versions | curl --request GET https://<msrhost>/charts/api/<namespace>/ \
<reponame>/charts/<chartname> -u <username>:<password> \
--cacert ca.crt
 | 
| Describe a version of a particular chart | curl --request GET https://<msrhost>/charts/api/<namespace>/ \
<reponame>/charts/<chartname>/<chartversion> -u \
<username>:<password> --cacert ca.crt
 | 
| Return the default values of a version of a particular chart | curl --request GET https://<msrhost>/charts/api/<namespace>/ \
<reponame>/charts/<chartname>/<chartversion>/values -u \
<username>:<password> --cacert ca.crt
 | 
| Produce a template of a version of a particular chart | curl --request GET https://<msrhost>/charts/api/<namespace>/ \
<reponame>/charts/<chartname>/<chartversion>/template -u \
<username>:<password> --cacert ca.crt
 | 
Viewing charts with the MSR web UI¶
Use the MSR web UI to view the MSR Helm repository charts.
- In the MSR web UI, navigate to Repositories. 
- Click the name of the repository that contains the charts you want to view. The page will refresh to display the detail for the selected Helm repository. 
- Click the Charts tab. The page will refresh to display all the repository charts. 
| View | UI sequence | 
|---|---|
| Chart versions | Click the View Chart button associated with the required Helm repository. | 
| Chart description | 
 | 
| Default values | 
 | 
| Chart templates | 
 |