一键导入
kiali-delete
Delete Kiali, Bookinfo, and Istio from Minikube. Use when the user says "delete kiali", "cleanup kiali", "teardown kiali", or similar.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Delete Kiali, Bookinfo, and Istio from Minikube. Use when the user says "delete kiali", "cleanup kiali", "teardown kiali", or similar.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Triage and review OSSM Jira CVE issues for the Kiali component. Two features - triage (find new CVEs, close inapplicable issues, create fix PRs for master and supported branches) and review (review fix PRs across branches, verify consistency and CI, approve, merge, update Jira). Use when the user mentions CVE triage, CVE review, OSSM CVE, or kiali-cve.
Investigate and fix a failing Cypress test from a GitHub issue. Reads the issue for scenario details, traces the failure through step definitions, analyzes root cause, implements a fix, and verifies it locally before committing.
Create a GitHub issue on kiali/kiali for a confirmed Cypress test failure. Use after identifying a failing test (from Jenkins nightly or local run) to file a structured bug report via gh CLI.
Analyze Jenkins nightly CI failure output to identify failing Cypress/Gherkin tests, map them to feature files, classify each failure (flake / ui-bug / test-bug), and produce a triage summary ready to hand off to regression-report.
Validate syntax and content quality of uncommitted files in the kiali.io documentation repository. Use when the user says "check syntax", "validate docs", or similar.
Start Kiali in Minikube with Istio and Bookinfo demo. Variants: kiali-start:sidecar (default), kiali-start:ambient. Use when the user says "start kiali", "kiali-start", "kiali-start:sidecar", "kiali-start:ambient", or similar.
| name | kiali-delete |
| description | Delete Kiali, Bookinfo, and Istio from Minikube. Use when the user says "delete kiali", "cleanup kiali", "teardown kiali", or similar. |
Clean up the Kiali development environment from Minikube by removing all deployed resources.
All commands below assume they are run from the parent directory where
the kiali repository is located (e.g. kiali_sources/).
pkill -f run-kiali.sh
kubectl delete -f $(ls -t kiali/_output/istio-*/samples/addons/extras/zipkin.yaml | head -1) 2>/dev/null || true
kubectl delete namespace bookinfo 2>/dev/null || true
kubectl delete -f $(ls -t kiali/_output/istio-*/samples/addons/kiali.yaml | head -1) 2>/dev/null || true
ISTIOCTL=$(ls -t kiali/_output/istio-*/bin/istioctl | head -1)
$ISTIOCTL uninstall --purge -y
kubectl delete namespace istio-system
If the user wants to remove the entire Minikube cluster:
minikube delete