56 lines
1.2 KiB
Markdown
56 lines
1.2 KiB
Markdown
---
|
|
description: Check deployment status on Eureka platform
|
|
allowed-tools: Read, Bash, Glob
|
|
---
|
|
|
|
# Eureka Deploy Status
|
|
|
|
**Input**: "$ARGUMENTS"
|
|
|
|
---
|
|
|
|
## PURPOSE
|
|
|
|
Check the current deployment status of the application on the Eureka platform.
|
|
|
|
---
|
|
|
|
## EXECUTION FLOW
|
|
|
|
### ═══════════════════════════════════════════════════════════════
|
|
### PHASE 1: Check Status
|
|
### ═══════════════════════════════════════════════════════════════
|
|
|
|
#### 1.1: Run Status Command
|
|
|
|
```bash
|
|
eureka deploy status --verbose
|
|
```
|
|
|
|
#### 1.2: Display Results
|
|
|
|
The command will show:
|
|
- Current deployment status (pending, building, deploying, deployed, failed)
|
|
- Version information
|
|
- Environment
|
|
- Timestamps
|
|
- Deployment URL (if deployed)
|
|
|
|
---
|
|
|
|
## ARGUMENTS
|
|
|
|
| Argument | Default | Description |
|
|
|----------|---------|-------------|
|
|
| `--verbose` | `false` | Show detailed logs |
|
|
|
|
## EXAMPLES
|
|
|
|
```bash
|
|
# Check current deployment status
|
|
/eureka:deploy-status
|
|
|
|
# Check with verbose output
|
|
/eureka:deploy-status --verbose
|
|
```
|