Files
Sankofa/scripts/run-ceph-osd-setup-remote.sh
defiQUG 33d50fb91e
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
chore: consolidate local WIP (repo cleanup 20260707)
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-07 09:41:34 -07:00

64 lines
1.9 KiB
Bash
Executable File

#!/bin/bash
# Helper script to run Ceph OSD setup on r630-01 remotely
# Usage: ./run-ceph-osd-setup-remote.sh [password] [--include-sdb]
set -e
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
SETUP_SCRIPT="$SCRIPT_DIR/setup-ceph-osds-r630.sh"
PROXMOX_HOST="192.168.11.11"
PROXMOX_USER="root"
# Get password from argument or environment
if [ -n "$1" ] && [ "$1" != "--include-sdb" ]; then
PASSWORD="$1"
shift
elif [ -n "$PROXMOX_PASSWORD" ]; then
PASSWORD="$PROXMOX_PASSWORD"
fi
# Check for --include-sdb flag
INCLUDE_SDB="false"
if [[ "$@" == *"--include-sdb"* ]]; then
INCLUDE_SDB="true"
fi
# Check if sshpass is installed
if ! command -v sshpass &>/dev/null; then
echo "Error: sshpass not installed. Install with: sudo apt-get install sshpass"
exit 1
fi
if [ -z "$PASSWORD" ]; then
echo "Usage: $0 <password> [--include-sdb]"
echo "Or: PROXMOX_PASSWORD=yourpass $0 [--include-sdb]"
exit 1
fi
echo "=========================================="
echo "Running Ceph OSD Setup on R630-01"
echo "=========================================="
echo ""
# Copy script to remote server
echo "Copying setup script to $PROXMOX_USER@$PROXMOX_HOST..."
sshpass -p "$PASSWORD" scp -o StrictHostKeyChecking=no "$SETUP_SCRIPT" "$PROXMOX_USER@$PROXMOX_HOST:/tmp/setup-ceph-osds-r630.sh" || {
echo "Error: Failed to copy script"
exit 1
}
# Make it executable
sshpass -p "$PASSWORD" ssh -o StrictHostKeyChecking=no "$PROXMOX_USER@$PROXMOX_HOST" "chmod +x /tmp/setup-ceph-osds-r630.sh"
# Run the script
echo ""
echo "Running setup script..."
echo ""
if [ "$INCLUDE_SDB" = "true" ]; then
sshpass -p "$PASSWORD" ssh -o StrictHostKeyChecking=no "$PROXMOX_USER@$PROXMOX_HOST" "INCLUDE_SDB=true /tmp/setup-ceph-osds-r630.sh"
else
sshpass -p "$PASSWORD" ssh -o StrictHostKeyChecking=no "$PROXMOX_USER@$PROXMOX_HOST" "/tmp/setup-ceph-osds-r630.sh"
fi