Files
Sankofa/docs/vm/MONITORING_CONTINUED.md

2.1 KiB

VM Deployment Monitoring - Continued

Date: 2025-12-13
Status: 🟡 MONITORING IN PROGRESS


Current Status

Provider

  • Status: Running (1/1 Ready)
  • Age: ~18 minutes
  • Authentication: Working (0 errors in last 5 minutes)

VMs

  • Total: 30
  • With VMID: Monitoring...
  • Status: Provider actively processing VMs

Monitoring Observations

Authentication

  • Token authentication working
  • No "invalid PVE ticket" errors
  • Provider successfully authenticating with Proxmox nodes

VM Creation

  • Provider is actively reconciling VMs
  • Token authentication being used for all requests
  • Node health checks proceeding

Monitoring Commands

Quick Status

# Provider status
kubectl get pods -n crossplane-system -l app=crossplane-provider-proxmox

# VM status
kubectl get proxmoxvm -A

# VMs with VMID
kubectl get proxmoxvm -A -o jsonpath='{range .items[*]}{.metadata.name}{"\t"}{.status.vmId}{"\n"}{end}' | grep -v "\t$"

Continuous Monitoring

# Watch all VMs
kubectl get proxmoxvm -A -w

# Continuous monitor script
./scripts/continuous-monitor.sh 30

# View provider logs
kubectl logs -n crossplane-system -l app=crossplane-provider-proxmox -f

Check Progress

# Total VMs
kubectl get proxmoxvm -A --no-headers | wc -l

# VMs with VMID
kubectl get proxmoxvm -A -o jsonpath='{range .items[*]}{.status.vmId}{"\n"}{end}' | grep -v "^$" | wc -l

# Authentication errors
kubectl logs -n crossplane-system -l app=crossplane-provider-proxmox --since=5m | grep -i "invalid PVE ticket" | wc -l

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

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