helm-chart-values
Retrieve the values.yaml file for a specific Helm chart from Artifact Hub by specifying the chart repository, chart name, and optional version.
Instructions
Get the values.yaml file for a specific Helm chart from Artifact Hub
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| chartName | Yes | The Helm chart name | |
| chartRepo | Yes | The Helm chart repository name | |
| 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"
    },
    "version": {
      "description": "The chart version (optional, defaults to latest)",
      "type": "string"
    }
  },
  "required": [
    "chartRepo",
    "chartName"
  ],
  "type": "object"
}