/api/application/appcatalog/helm: GET

Returns a listing of all the application helm charts.

The following table shows which roles can access this REST API endpoint:
Table 1. Access by role
Data admin CollectionAdmin Data user Admin Service user
X X Χ Χ

Synopsis of the request URL

curl -k -H “Authorization: Bearer <token>” -H "Content-Type: application/json"  
https://<spectrum_discover_host>/api/application/appcatalog/helm

Supported request types and response formats

Supported request types:
  • GET
Supported response formats:
  • JSON

Examples

The following example shows how to get the details of all installed applications

Request:
curl -X GET -k -H "Authorization: Bearer $TOKEN" -H "Content-Type: application/json" https://<spectrum_discover_host>/api/application/appcatalog/helm | jq
Response:
{
  "success": "true",
  "message": "Successfully retrieved installed applications.",
  "output": [
    {
      "deployment": "exif-header-extractor-application-0-0-2",
      "chart": "exif-header-extractor-application-0-0-2",
      "repo": "ibmcom/spectrum-discover-exif-header-extractor",
      "updated": "2020-09-25T01:02:49Z",
      "replicas": 1
    }
  ]
}