Fleet Commands¶
Distributed command orchestration across VM fleets.
Overview¶
Execute commands across multiple VMs in parallel with intelligent routing and error handling.
Available Commands¶
azlin fleet exec- Execute command on fleetazlin batch exec- Batch command execution
Quick Start¶
# Execute on all VMs
azlin fleet exec "*" "docker ps"
# Execute on pattern
azlin fleet exec "api-*" "systemctl status nginx"
# Execute with specific VMs
azlin fleet exec "vm1,vm2,vm3" "uptime"
Features¶
- Parallel Execution: Run commands simultaneously
- Pattern Matching: Target VMs with wildcards
- Error Handling: Continue on failures
- Output Aggregation: Collect and format results
Related Commands¶
- azlin batch command - Batch operations
- azlin w - Distributed monitoring
- azlin ps - Distributed process listing