855 B
855 B
name, description
| name | description |
|---|---|
| chart_updater | Pull a Helm chart version and extract it into manifests/helm/<chart>/<version>. |
chart_updater
Pull a chart from helm repo and create a versioned directory in dip-catalog.
from_version이 주어지면 이전 버전 디렉토리에서 아래 파일을 새 버전 디렉토리로 복사한다 (이미 존재하는 파일은 건너뜀):
BUILD-README.md— 복사 +from_version→version버전 번호 치환CUSTOM-README.md— 그대로 복사custom-values.yaml— 그대로 복사
Input schema
{
"catalog_root": "string",
"chart": "string",
"repo": "string",
"version": "string",
"from_version": "string (optional)"
}
Output schema
{
"success": "boolean",
"already_existed": "boolean",
"dest_dir": "string",
"copied_files": ["string"]
}