1.4 KiB
1.4 KiB
Next Steps - Quick Reference
Quick checklist of immediate next steps.
🚀 Immediate Actions (Before Deployment)
1. Verify Prerequisites
./smom-dbis-138-proxmox/scripts/validation/check-prerequisites.sh /home/intlc/projects/smom-dbis-138
2. Copy Scripts to Proxmox Host
./scripts/copy-scripts-to-proxmox.sh
3. Test with Dry-Run
# On Proxmox host
cd /opt/smom-dbis-138-proxmox
./scripts/deployment/deploy-validated-set.sh --dry-run --source-project /path/to/smom-dbis-138
🧪 Testing
Test Individual Scripts
./scripts/network/bootstrap-network.sh --help
./scripts/validation/validate-validator-set.sh --help
./scripts/health/check-node-health.sh 106
🚀 Deployment
Full Deployment
# On Proxmox host
cd /opt/smom-dbis-138-proxmox
./scripts/deployment/deploy-validated-set.sh --source-project /path/to/smom-dbis-138
Post-Deployment
# Secure keys
./scripts/secure-validator-keys.sh
# Set up monitoring
./scripts/monitoring/setup-health-check-cron.sh
# Configure alerts
./scripts/monitoring/simple-alert.sh
📊 Daily Operations
Health Check
for vmid in 106 107 108 109 110 111 112 113 114 115 116 117; do
./scripts/health/check-node-health.sh $vmid
done
Backup
./scripts/backup/backup-configs.sh
📚 Full Documentation
See docs/NEXT_STEPS_COMPLETE.md for comprehensive guide with 50+ steps.