astroctl_clusters_progress_history
astroctl clusters progress history
Get operation history for a cluster
Synopsis
Retrieve the complete operation history for a specific cluster
astroctl clusters progress history [cluster-name] [flags]
Examples
# Get operation history for a cluster (using positional argument)
astroctl clusters progress history prod-cluster
# Get operation history for a cluster (using flag)
astroctl clusters progress history --cluster-name prod-cluster
# Get limited history (limit number of operations returned)
astroctl clusters progress history prod-cluster --limit 10
# Get history with pagination
astroctl clusters progress history prod-cluster --page-token next-page-123
# Get history for a cluster not in database (requires location parameters)
astroctl clusters progress history prod-cluster --provider-id aws --provisioner-type selfHosted --account-id 123456789 --region us-west-2
# Get history for managed cluster
astroctl clusters progress history prod-cluster --provider-id aws --provisioner-type eks --account-id 123456789 --region us-west-2
# Show all events instead of operation summaries (for validation)
astroctl clusters progress history prod-cluster --show-events
# Get structured output
astroctl clusters progress history prod-cluster --output json
astroctl clusters progress history prod-cluster --output yaml
Options
--account-id string Cloud account ID - required if cluster not found
-c, --cluster-name string Cluster Name to get history for
-h, --help help for history
--limit int Maximum number of operations to return (each operation may contain multiple events) (default 100)
-o, --output string Output format (json|yaml)
--page-token string Page token for pagination (shown in output when more pages available)
-p, --provider-id string Cloud provider id (aws, gcp, azure) - required if cluster not found
--provisioner-type string Provisioner type (selfHosted, eks, gke, aks) - required if cluster not found, defaults to selfHosted
-r, --region string Cloud region - required if cluster not found
--show-events Show all events instead of operation summaries
SEE ALSO
- astroctl clusters progress - Cluster progress and operations tracking