Files
proxmox/scripts/migrate-containers-to-pve2-local-storage.sh.bak
defiQUG fbda1b4beb
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
docs: Ledger Live integration, contract deploy learnings, NEXT_STEPS updates
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands
- CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround
- CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check
- NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere
- MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates
- LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 15:46:57 -08:00

191 lines
6.7 KiB
Bash

#!/usr/bin/env bash
# Migrate containers to pve2 using 'local' directory storage instead of local-lvm
# This works around the local-lvm configuration issue on pve2
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROXMOX_HOST="${PROXMOX_HOST:-192.168.11.10}"
PROXMOX_PASS="${PROXMOX_PASS:-L@kers2010}"
SOURCE_NODE="ml110"
TARGET_NODE="pve2"
TARGET_STORAGE="local" # Use directory storage instead of local-lvm
# Colors
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
CYAN='\033[0;36m'
NC='\033[0m'
log_info() { echo -e "${BLUE}[INFO]${NC} $1"; }
log_success() { echo -e "${GREEN}[✓]${NC} $1"; }
log_warn() { echo -e "${YELLOW}[WARN]${NC} $1"; }
log_error() { echo -e "${RED}[ERROR]${NC} $1"; }
log_header() { echo -e "${CYAN}[$1]${NC} $2"; }
# SSH helper
ssh_proxmox() {
sshpass -p "$PROXMOX_PASS" ssh -o StrictHostKeyChecking=no -o ConnectTimeout=5 root@"$PROXMOX_HOST" "$@"
}
# Check if container exists and get its status
check_container() {
local vmid=$1
local node=$2
ssh_proxmox "pvesh get /nodes/$node/lxc/$vmid/status/current --output-format json" 2>&1 | python3 -c "import sys, json; d=json.load(sys.stdin); print(d.get('status', 'unknown'))" 2>/dev/null || echo "not_found"
}
# Migrate a single container using specified storage
migrate_container() {
local vmid=$1
local name=$2
log_info "Migrating container $vmid ($name) from $SOURCE_NODE to $TARGET_NODE"
log_info " Using storage: $TARGET_STORAGE (directory storage)"
# Check source container status
source_status=$(check_container "$vmid" "$SOURCE_NODE")
if [[ "$source_status" == "not_found" ]]; then
log_error " Container $vmid not found on $SOURCE_NODE"
return 1
fi
log_info " Current status on $SOURCE_NODE: $source_status"
# Perform migration with storage specification
log_info " Starting migration (this may take several minutes)..."
log_warn " Note: Using directory storage instead of LVM (slower but works)"
if ssh_proxmox "pct migrate $vmid $TARGET_NODE --storage $TARGET_STORAGE --restart" 2>&1; then
log_success " Migration command completed"
# Wait and verify
log_info " Waiting for migration to complete and verifying..."
sleep 10
# Check multiple times as migration might take time
for i in {1..6}; do
sleep 5
target_status=$(check_container "$vmid" "$TARGET_NODE")
if [[ "$target_status" != "not_found" ]]; then
log_success " Container $vmid is now on $TARGET_NODE (status: $target_status)"
return 0
fi
log_info " Still migrating... (attempt $i/6)"
done
log_warn " Migration may have succeeded but container not yet visible on target"
log_info " Please verify manually: ssh root@$PROXMOX_HOST 'pvesh get /nodes/$TARGET_NODE/lxc'"
return 0
else
log_error " Migration failed for container $vmid"
return 1
fi
}
# Main execution
main() {
echo "========================================="
log_header "MIGRATION" "LXC Containers to pve2 using local storage"
echo "========================================="
echo ""
log_warn "This migration uses 'local' (directory) storage instead of 'local-lvm'"
log_warn "This is a workaround for the local-lvm configuration issue on pve2"
echo ""
# Verify cluster status
log_info "Verifying cluster status..."
cluster_status=$(ssh_proxmox "pvecm status" 2>&1 | grep -c "Quorate:.*Yes" || echo "0")
if [[ "$cluster_status" == "0" ]]; then
log_error "Cluster is not quorate. Cannot proceed with migration."
exit 1
fi
log_success "Cluster is quorate"
echo ""
# Verify target node is online
log_info "Verifying target node ($TARGET_NODE) is online..."
target_online=$(ssh_proxmox "pvesh get /nodes --output-format json" 2>&1 | python3 -c "import sys, json; nodes=json.load(sys.stdin); target=[n for n in nodes if n['node']=='$TARGET_NODE' and n['status']=='online']; print('online' if target else 'offline')" 2>/dev/null || echo "unknown")
if [[ "$target_online" != "online" ]]; then
log_error "Target node $TARGET_NODE is not online (status: $target_online)"
exit 1
fi
log_success "Target node is online"
# Verify target storage is available
log_info "Verifying target storage ($TARGET_STORAGE) is available on $TARGET_NODE..."
storage_available=$(ssh_proxmox "pvesh get /nodes/$TARGET_NODE/storage --output-format json" 2>&1 | python3 -c "import sys, json; storages=[s['storage'] for s in json.load(sys.stdin)['data']]; print('yes' if '$TARGET_STORAGE' in storages else 'no')" 2>/dev/null || echo "unknown")
if [[ "$storage_available" != "yes" ]]; then
log_error "Target storage $TARGET_STORAGE is not available on $TARGET_NODE"
exit 1
fi
log_success "Target storage is available"
echo ""
# Priority containers to migrate (high resource usage)
PRIORITY_CONTAINERS=(
"1000:besu-validator-1"
"1001:besu-validator-2"
"1002:besu-validator-3"
"1003:besu-validator-4"
"1004:besu-validator-5"
"2500:besu-rpc-1"
"2501:besu-rpc-2"
"2502:besu-rpc-3"
"5000:blockscout-1"
)
log_info "Will migrate the following containers to $TARGET_NODE using $TARGET_STORAGE storage:"
for container in "${PRIORITY_CONTAINERS[@]}"; do
vmid="${container%%:*}"
name="${container#*:}"
echo " - $vmid: $name"
done
echo ""
log_warn "Starting migrations. Each migration may take 3-10 minutes (directory storage is slower)."
echo ""
failed=0
success=0
total=${#PRIORITY_CONTAINERS[@]}
for container in "${PRIORITY_CONTAINERS[@]}"; do
vmid="${container%%:*}"
name="${container#*:}"
if migrate_container "$vmid" "$name"; then
success=$((success + 1))
else
failed=$((failed + 1))
fi
# Small delay between migrations
if [[ $success -lt $total ]]; then
log_info "Waiting 15 seconds before next migration..."
sleep 15
fi
echo ""
done
echo ""
log_info "========================================="
log_info "Migration Summary"
log_info "========================================="
log_success "Successful: $success/$total"
if [[ $failed -gt 0 ]]; then
log_warn "Failed: $failed/$total"
fi
echo ""
log_info "Verify containers on target node:"
echo " ssh root@$PROXMOX_HOST 'pvesh get /nodes/$TARGET_NODE/lxc'"
echo ""
}
main "$@"