chore: consolidate local WIP (repo cleanup 20260707)
Some checks failed
API CI / API Lint (push) Successful in 47s
API CI / API Type Check (push) Failing after 47s
API CI / API Test (push) Successful in 1m0s
API CI / API Build (push) Failing after 50s
API CI / Build Docker Image (push) Has been skipped
Build Crossplane Provider / build (push) Failing after 5m51s
CD Pipeline / Deploy to Staging (push) Failing after 29s
CI Pipeline / Lint and Type Check (push) Failing after 36s
CI Pipeline / Build (push) Has been skipped
CI Pipeline / Test Backend (push) Failing after 1m33s
CI Pipeline / Test Frontend (push) Failing after 30s
CI Pipeline / Security Scan (push) Failing after 1m16s
Crossplane Provider CI / Go Test (push) Failing after 3m23s
Crossplane Provider CI / Go Lint (push) Failing after 7m27s
Crossplane Provider CI / Go Build (push) Failing after 3m27s
Deploy to Staging / Deploy to Staging (push) Failing after 30s
Portal CI / Portal Lint (push) Failing after 21s
Portal CI / Portal Type Check (push) Failing after 21s
Portal CI / Portal Test (push) Failing after 21s
Portal CI / Portal Build (push) Failing after 22s
Test Suite / frontend-tests (push) Failing after 30s
Test Suite / api-tests (push) Failing after 49s
Test Suite / blockchain-tests (push) Failing after 30s
Type Check / type-check (map[directory:. name:root]) (push) Failing after 23s
Type Check / type-check (map[directory:api name:api]) (push) Failing after 21s
Type Check / type-check (map[directory:portal name:portal]) (push) Failing after 19s
Validate Configuration Files / validate (push) Failing after 1m52s
CD Pipeline / Deploy to Production (push) Has been skipped
Some checks failed
API CI / API Lint (push) Successful in 47s
API CI / API Type Check (push) Failing after 47s
API CI / API Test (push) Successful in 1m0s
API CI / API Build (push) Failing after 50s
API CI / Build Docker Image (push) Has been skipped
Build Crossplane Provider / build (push) Failing after 5m51s
CD Pipeline / Deploy to Staging (push) Failing after 29s
CI Pipeline / Lint and Type Check (push) Failing after 36s
CI Pipeline / Build (push) Has been skipped
CI Pipeline / Test Backend (push) Failing after 1m33s
CI Pipeline / Test Frontend (push) Failing after 30s
CI Pipeline / Security Scan (push) Failing after 1m16s
Crossplane Provider CI / Go Test (push) Failing after 3m23s
Crossplane Provider CI / Go Lint (push) Failing after 7m27s
Crossplane Provider CI / Go Build (push) Failing after 3m27s
Deploy to Staging / Deploy to Staging (push) Failing after 30s
Portal CI / Portal Lint (push) Failing after 21s
Portal CI / Portal Type Check (push) Failing after 21s
Portal CI / Portal Test (push) Failing after 21s
Portal CI / Portal Build (push) Failing after 22s
Test Suite / frontend-tests (push) Failing after 30s
Test Suite / api-tests (push) Failing after 49s
Test Suite / blockchain-tests (push) Failing after 30s
Type Check / type-check (map[directory:. name:root]) (push) Failing after 23s
Type Check / type-check (map[directory:api name:api]) (push) Failing after 21s
Type Check / type-check (map[directory:portal name:portal]) (push) Failing after 19s
Validate Configuration Files / validate (push) Failing after 1m52s
CD Pipeline / Deploy to Production (push) Has been skipped
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
80
docs/vm/MONITORING_PROGRESS.md
Normal file
80
docs/vm/MONITORING_PROGRESS.md
Normal file
@@ -0,0 +1,80 @@
|
||||
# VM Deployment Monitoring Progress
|
||||
|
||||
**Date**: 2025-12-13
|
||||
**Status**: 🟡 **MONITORING IN PROGRESS**
|
||||
|
||||
---
|
||||
|
||||
## Monitoring Commands
|
||||
|
||||
### Real-Time Monitoring
|
||||
```bash
|
||||
# Watch all VMs
|
||||
kubectl get proxmoxvm -A -w
|
||||
|
||||
# Continuous monitor (30 second intervals)
|
||||
./scripts/continuous-monitor.sh 30
|
||||
|
||||
# View provider logs
|
||||
kubectl logs -n crossplane-system -l app=crossplane-provider-proxmox -f
|
||||
```
|
||||
|
||||
### Quick Status Check
|
||||
```bash
|
||||
# Total VMs
|
||||
kubectl get proxmoxvm -A --no-headers | wc -l
|
||||
|
||||
# VMs with VMID (created on Proxmox)
|
||||
kubectl get proxmoxvm -A -o jsonpath='{range .items[*]}{.status.vmId}{"\n"}{end}' | grep -v "^$" | wc -l
|
||||
|
||||
# List all VMs with VMID
|
||||
kubectl get proxmoxvm -A -o jsonpath='{range .items[*]}{.metadata.name}{"\t"}{.status.vmId}{"\n"}{end}' | grep -v "\t$"
|
||||
```
|
||||
|
||||
### Check for Errors
|
||||
```bash
|
||||
# Authentication errors
|
||||
kubectl logs -n crossplane-system -l app=crossplane-provider-proxmox --since=5m | grep -i "invalid PVE ticket\|401.*authentication"
|
||||
|
||||
# ResourceDiscovery errors
|
||||
kubectl logs -n crossplane-system -l app=crossplane-provider-proxmox --since=5m | grep -i "resourcediscovery"
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Expected Timeline
|
||||
|
||||
- **Per VM**: 2-5 minutes
|
||||
- **Small VMs** (2 CPU, 4 GiB): 2-3 minutes
|
||||
- **Medium VMs** (4 CPU, 16 GiB): 3-5 minutes
|
||||
- **Large VMs** (500 GiB disk): 5-10 minutes
|
||||
- **Total Time**: 30-60 minutes for all 30 VMs
|
||||
|
||||
---
|
||||
|
||||
## Monitoring Status
|
||||
|
||||
### Provider
|
||||
- **Status**: Running (1/1 Ready)
|
||||
- **Authentication**: Token-based ✅
|
||||
- **Errors**: None ✅
|
||||
|
||||
### VMs
|
||||
- **Total**: 30
|
||||
- **Created**: In progress
|
||||
- **Expected Completion**: 30-60 minutes
|
||||
|
||||
---
|
||||
|
||||
## Next Steps
|
||||
|
||||
1. Continue monitoring VM creation progress
|
||||
2. Verify VMs are being created on Proxmox
|
||||
3. Check for any errors or issues
|
||||
4. Post-deployment verification once complete
|
||||
|
||||
---
|
||||
|
||||
**Last Updated**: 2025-12-13
|
||||
**Status**: 🟡 **MONITORING IN PROGRESS**
|
||||
|
||||
Reference in New Issue
Block a user