helm-chart-info
Retrieve detailed information about Helm charts from Artifact Hub, including ID, latest version, and description, by specifying the chart repository and name.
Instructions
Get information about a Helm chart from Artifact Hub, including ID, latest version, and description
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| chartName | Yes | The Helm chart name | |
| chartRepo | Yes | The Helm chart repository name | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "chartName": {
      "description": "The Helm chart name",
      "type": "string"
    },
    "chartRepo": {
      "description": "The Helm chart repository name",
      "type": "string"
    }
  },
  "required": [
    "chartRepo",
    "chartName"
  ],
  "type": "object"
}