一键导入
k8s-workflow
Agent contract and fast dev loop for K8s operator development
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Agent contract and fast dev loop for K8s operator development
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
CRD schema, webhook, RBAC, and reconcile loop patterns
Safety, CRD, webhook, RBAC, and dev loop checklists
Tiltfile, Makefile, and Kustomize templates for K8s operators
基于 SOC 职业分类
| name | k8s-workflow |
| description | Agent contract and fast dev loop for K8s operator development |
kubectl commands.kind-* contexts. Avoid destructive operations by default.kubectl and logs.Always ask these 10 questions and wait for answers:
Default to Tilt (tilt up or make dev) for all build and deploy cycles. Do not manually run docker build, kind load, or kustomize build | kubectl apply unless Tilt live-update cannot handle the change.
make dev (wraps tilt up)go build produces the manager binaryTilt live-update only syncs the compiled binary. Use manual docker build + kind load + kubectl apply when:
make manifests needed, then re-apply CRDs)api/v1/*_types.go — CRD spec and status typesinternal/controller/*_controller.go — Reconcile loopapi/v1/*_webhook.go — Webhook handlersconfig/crd/bases/ — Generated CRD YAMLconfig/webhook/ — Webhook configurationconfig/rbac/ — RBAC rulesconfig/dev/ — Kustomize dev overlayTiltfile — Tilt configurationMakefile — Build and dev targetskind-* kubectl contextsIgnore for dev, Fail for productionUse MCP to verify:
If MCP is not available, use equivalent kubectl commands.