Files
2026-03-06 17:08:31 +09:00

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_versionversion 버전 번호 치환
  • 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"]
}