Move directory

This commit is contained in:
wbsong111
2026-03-06 17:08:31 +09:00
parent 4d99258344
commit 21addb6e88
73 changed files with 0 additions and 0 deletions
@@ -0,0 +1,33 @@
---
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"
}
```