Files
proxmox/docs/archive/NEXT_STEPS_QUICK_REFERENCE.md

71 lines
1.4 KiB
Markdown

# Next Steps - Quick Reference
Quick checklist of immediate next steps.
## 🚀 Immediate Actions (Before Deployment)
### 1. Verify Prerequisites
```bash
./smom-dbis-138-proxmox/scripts/validation/check-prerequisites.sh /home/intlc/projects/smom-dbis-138
```
### 2. Copy Scripts to Proxmox Host
```bash
./scripts/copy-scripts-to-proxmox.sh
```
### 3. Test with Dry-Run
```bash
# 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
```bash
./scripts/network/bootstrap-network.sh --help
./scripts/validation/validate-validator-set.sh --help
./scripts/health/check-node-health.sh 106
```
## 🚀 Deployment
### Full Deployment
```bash
# On Proxmox host
cd /opt/smom-dbis-138-proxmox
./scripts/deployment/deploy-validated-set.sh --source-project /path/to/smom-dbis-138
```
### Post-Deployment
```bash
# 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
```bash
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
```bash
./scripts/backup/backup-configs.sh
```
## 📚 Full Documentation
See `docs/NEXT_STEPS_COMPLETE.md` for comprehensive guide with 50+ steps.