helm-chart-template
Retrieve the content of a specific template file from a Helm chart stored in ArtifactHub by specifying the repository, chart name, and exact filename.
Instructions
Get the content of a template file from a Helm chart in Artifact Hub
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| chartName | Yes | The Helm chart name | |
| chartRepo | Yes | The Helm chart repository name | |
| filename | Yes | Exact filename (full path) to filter templates by (case-sensitive) | |
| version | No | The chart version (optional, defaults to latest) | 
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"
    },
    "filename": {
      "description": "Exact filename (full path) to filter templates by (case-sensitive)",
      "type": "string"
    },
    "version": {
      "description": "The chart version (optional, defaults to latest)",
      "type": "string"
    }
  },
  "required": [
    "chartRepo",
    "chartName",
    "filename"
  ],
  "type": "object"
}