Skip to content

Inspect Helm Chart

POST
/deployments/inspect-helm-chart
curl --request POST \
--url https://api.mengi.cloud/deployments/inspect-helm-chart \
--header 'Content-Type: application/json' \
--data '{ "repo_url": "example", "chart_name": "example", "version": "example" }'

Inspect a Helm chart and return its metadata and resource requirements.

This endpoint fetches the chart from the repository, extracts Chart.yaml and values.yaml, and returns the chart info including default resource specs.

Media type application/json
HelmChartInspectRequest

Request for inspecting a Helm chart.

object
repo_url
required
Repo Url
string
chart_name
required
Chart Name
string
version
Any of:
string
Example generated
{
"repo_url": "example",
"chart_name": "example",
"version": "example"
}

Successful Response

Media type application/json
Example generated
example

Validation Error

Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}