helm-chart-templates-fuzzy-search
Search for specific template filenames or contents within Helm charts using fuzzy matching, enabling quick discovery of relevant files and data in a specified chart repository and version.
Instructions
Fuzzy search through all template filenames/contents in a Helm chart
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chartName | Yes | The Helm chart name | |
chartRepo | Yes | The Helm chart repository name | |
searchQuery | Yes | The search query for fuzzy matching | |
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"
},
"searchQuery": {
"description": "The search query for fuzzy matching",
"type": "string"
},
"version": {
"description": "The chart version (optional, defaults to latest)",
"type": "string"
}
},
"required": [
"chartRepo",
"chartName",
"searchQuery"
],
"type": "object"
}