--- name: deploy_validate description: Deploy chart to a test namespace and validate health. user-invokable: false --- # deploy_validate (Skill) Runs helm upgrade in a test namespace and reports health. ## Input schema ```json { "chart": "string", "repo": "string | null", "chart_path": "string | null", "version": "string", "values_override": "object | null", "namespace": "string", "timeout": "number (default 300)" } ``` ## Output schema ```json { "success": "boolean", "dry_run_passed": "boolean", "pod_status": "object", "events": "array", "logs": "string | null" } ```