ワンクリックで
run-e2e-tests
Runs end-to-end or upgrade tests on existing long-running Maestro clusters deployed in Azure AKS
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Runs end-to-end or upgrade tests on existing long-running Maestro clusters deployed in Azure AKS
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
This skill should be used when tracing ManifestWork resources through the Maestro system to find relationships between user-created work names, resource IDs, and applied manifests, or to debug manifest application issues across the management cluster and database.
This skill should be used when tracing resource requests through the Maestro system to debug resource lifecycle issues, track request flow from client to agent and back, or troubleshoot failures in resource creation, update, or deletion operations across the server-agent-server pipeline. Supports both Kubernetes log files and ARO HCP Kusto CSV exports.
Sets up a long-running Maestro cluster environment using Azure ARO-HCP infrastructure with both service and management clusters
Diagnoses failed Maestro cluster deployments by analyzing Helm releases, pod status, and resource conflicts
| name | run-e2e-tests |
| description | Runs end-to-end or upgrade tests on existing long-running Maestro clusters deployed in Azure AKS |
| category | Testing |
| tags | ["azure","aks","maestro","e2e","testing","upgrade","kubernetes"] |
Runs end-to-end or upgrade tests on existing long-running Maestro clusters deployed in Azure AKS.
Prerequisites:
SVC_RESOURCE_GROUP: Resource group for service clusterSVC_CLUSTER_NAME: Name of service clusterMGMT_RESOURCE_GROUP: Resource group for management clusterMGMT_CLUSTER_NAME: Name of management clusterUsage:
/run-e2e-tests [test-type]
Where test-type can be:
upgrade: Run upgrade tests (default)e2e: Run standard E2E tests with Istioall: Run both upgrade and e2e testsExample:
export SVC_RESOURCE_GROUP="hcp-underlay-<cluster-id>-svc"
export SVC_CLUSTER_NAME="<cluster-id>-svc"
export MGMT_RESOURCE_GROUP="hcp-underlay-<cluster-id>-mgmt-1"
export MGMT_CLUSTER_NAME="<cluster-id>-mgmt-1"
/run-e2e-tests upgrade
#!/bin/bash
# Execute the E2E test script
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
exec "$SCRIPT_DIR/scripts/run-tests.sh" "$@"