File size: 11,986 Bytes
93c7565 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 | #!/usr/bin/env bash
# scripts/deploy-droplet.sh
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Deploy ProofBridge Liner to the AMD MI300X DigitalOcean droplet.
#
# Target : 165.245.140.197
# Droplet : FX-AM7-gpu-mi300x1-192gb-devcloud-atl1
# GPU : AMD Instinct MI300X β 192 GB HBM3
# Image : OpenAI GPT OSS (ROCm 7) on Ubuntu 24.04
# User : root (DigitalOcean marketplace default)
#
# Usage:
# chmod +x scripts/deploy-droplet.sh
# ./scripts/deploy-droplet.sh [flags]
#
# Flags:
# --setup First-time: apt update/upgrade + reboot (required by DO
# security notice). Waits for reboot then continues deploy.
# --rocm Mount host ROCm 7 into container for GPU acceleration
# --restart-only Skip build; just restart the running service
# --dry-run Print every SSH command without executing
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
set -euo pipefail
# ββ Config ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
DROPLET_IP="165.245.140.197"
DROPLET_USER="root"
REPO_DIR="/root/proofbridge-liner"
GITHUB_REPO="https://github.com/divhanimajokweni-ctrl/proofbridge-liner.git"
SERVICE_NAME="proofbridge"
CONTAINER_NAME="proofbridge-liner"
PORT=7860
# ββ Flags βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
DO_SETUP=false
USE_ROCM=false
RESTART_ONLY=false
DRY_RUN=false
for arg in "$@"; do
case "$arg" in
--setup) DO_SETUP=true ;;
--rocm) USE_ROCM=true ;;
--restart-only) RESTART_ONLY=true ;;
--dry-run) DRY_RUN=true ;;
*) echo "Unknown flag: $arg (valid: --setup --rocm --restart-only --dry-run)"; exit 1 ;;
esac
done
DOCKERFILE="Dockerfile"
IMAGE_TAG="proofbridge-liner:latest"
if $USE_ROCM; then
DOCKERFILE="Dockerfile.rocm"
IMAGE_TAG="proofbridge-liner:rocm"
fi
# ββ Helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
bold() { printf '\033[1m%s\033[0m\n' "$*"; }
ok() { printf ' \033[32mβ\033[0m %s\n' "$*"; }
info() { printf ' \033[34mΒ·\033[0m %s\n' "$*"; }
warn() { printf ' \033[33mβ \033[0m %s\n' "$*"; }
die() { printf '\033[31mERROR: %s\033[0m\n' "$*" >&2; exit 1; }
SSH_OPTS="-o StrictHostKeyChecking=accept-new -o ConnectTimeout=15 -o ServerAliveInterval=30"
SSH="ssh $SSH_OPTS ${DROPLET_USER}@${DROPLET_IP}"
ssh_run() {
local label="$1"; shift
info "$label"
if $DRY_RUN; then
printf ' \033[2m[dry-run] ssh %s@%s << HEREDOC\n' "$DROPLET_USER" "$DROPLET_IP"
printf ' %s\033[0m\n' "$*"
else
$SSH "$@"
fi
}
wait_for_ssh() {
info "Waiting for droplet to come back online after reboot..."
local attempts=0
until $SSH "echo ok" &>/dev/null || [ $attempts -ge 30 ]; do
sleep 5
attempts=$((attempts+1))
printf '.'
done
echo ""
[ $attempts -lt 30 ] && ok "Droplet is back online" || die "Timed out waiting for reboot"
}
# ββ Banner ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
echo ""
bold "ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ"
bold "β ProofBridge Liner β MI300X Droplet Deploy β"
bold "ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ"
echo ""
info "Target : ${DROPLET_USER}@${DROPLET_IP}:${PORT}"
info "GPU : AMD Instinct MI300X β 192 GB HBM3"
info "Image : ${IMAGE_TAG} (${DOCKERFILE})"
info "Mode : $(if $DRY_RUN; then echo DRY-RUN; elif $RESTART_ONLY; then echo RESTART-ONLY; elif $DO_SETUP; then echo SETUP+DEPLOY; else echo FULL-DEPLOY; fi)"
echo ""
# ββ SSH connectivity check ββββββββββββββββββββββββββββββββββββββββ
if ! $DRY_RUN; then
info "Testing SSH connectivity to ${DROPLET_IP}..."
if ! $SSH "echo ok" &>/dev/null; then
die "Cannot SSH to ${DROPLET_IP}. Check your key is loaded (ssh-add) and the droplet is active."
fi
ok "SSH connection established"
fi
# ββ SETUP: apt update/upgrade + reboot (run once after provisioning) ββ
if $DO_SETUP; then
bold ""
bold " ββ Phase 0: System update (required by DigitalOcean security notice)"
echo ""
ssh_run "Updating system packages (this takes a few minutes)..." bash << 'ENDSSH'
export DEBIAN_FRONTEND=noninteractive
apt-get update -qq
apt-get upgrade -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold"
apt-get autoremove -y
echo " System updated."
ENDSSH
ok "System packages updated"
ssh_run "Rebooting droplet..." bash << 'ENDSSH'
nohup bash -c 'sleep 2 && reboot' &>/dev/null &
ENDSSH
ok "Reboot initiated"
if ! $DRY_RUN; then
sleep 8
wait_for_ssh
fi
fi
# ββ Clone or pull repo ββββββββββββββββββββββββββββββββββββββββββββ
if ! $RESTART_ONLY; then
bold ""
bold " ββ Phase 1: Sync repository"
echo ""
ssh_run "Cloning / pulling repo on droplet" bash << ENDSSH
set -e
if [ -d "${REPO_DIR}/.git" ]; then
echo " Pulling latest..."
cd "${REPO_DIR}" && git pull --ff-only
else
echo " Cloning from GitHub..."
git clone "${GITHUB_REPO}" "${REPO_DIR}"
fi
cd "${REPO_DIR}"
echo " HEAD: \$(git log --oneline -1)"
ENDSSH
ok "Repo synced at ${REPO_DIR}"
# ββ Ensure Docker is installed ββββββββββββββββββββββββββββββββββ
ssh_run "Checking Docker installation" bash << 'ENDSSH'
set -e
if ! command -v docker &>/dev/null; then
echo " Docker not found β installing..."
curl -fsSL https://get.docker.com | sh
else
echo " Docker $(docker --version | cut -d' ' -f3) already installed"
fi
ENDSSH
ok "Docker ready"
# ββ Build Docker image ββββββββββββββββββββββββββββββββββββββββββ
bold ""
bold " ββ Phase 2: Build Docker image"
echo ""
ssh_run "Building ${IMAGE_TAG} from ${DOCKERFILE}" bash << ENDSSH
set -e
cd "${REPO_DIR}"
echo " Building ${IMAGE_TAG}..."
docker build -f ${DOCKERFILE} -t ${IMAGE_TAG} .
echo " Image size: \$(docker image inspect ${IMAGE_TAG} --format '{{.Size}}' | numfmt --to=iec 2>/dev/null || echo 'N/A')"
ENDSSH
ok "Docker image built: ${IMAGE_TAG}"
# ββ Install systemd service βββββββββββββββββββββββββββββββββββββ
bold ""
bold " ββ Phase 3: Install systemd service"
echo ""
# ROCm device flags (host ROCm mounted at /opt/rocm)
ROCM_FLAGS=""
if $USE_ROCM; then
ROCM_FLAGS=" --device /dev/kfd \\\\\n --device /dev/dri \\\\\n --group-add video \\\\\n --group-add render \\\\\n -v /opt/rocm:/opt/rocm:ro \\\\\n -e ROCM_PATH=/opt/rocm \\\\\n -e LD_LIBRARY_PATH=/opt/rocm/lib:\$LD_LIBRARY_PATH \\\\"
fi
ssh_run "Writing /etc/systemd/system/${SERVICE_NAME}.service" bash << ENDSSH
set -e
cat > /etc/systemd/system/${SERVICE_NAME}.service << 'EOF'
[Unit]
Description=ProofBridge Liner β AMD MI300X Safety Kernel
After=docker.service network-online.target
Wants=network-online.target
Requires=docker.service
[Service]
Restart=always
RestartSec=10
EnvironmentFile=-/root/proofbridge-liner/.env.deployed
ExecStartPre=-/usr/bin/docker rm -f ${CONTAINER_NAME}
ExecStart=/usr/bin/docker run --rm \\
--name ${CONTAINER_NAME} \\
--network host \\
$(if $USE_ROCM; then printf '%b' "${ROCM_FLAGS}"; fi)
-e NODE_ENV=production \\
-e DASHBOARD_PORT=${PORT} \\
-e DASHBOARD_HOST=0.0.0.0 \\
-e HF_TOKEN=\${HF_TOKEN:-} \\
-e POLYGON_AMOY_RPC_URL=\${POLYGON_AMOY_RPC_URL:-} \\
-e ORACLE_ADDRESS=\${ORACLE_ADDRESS:-} \\
-e CIRCUIT_BREAKER_ADDRESS=\${CIRCUIT_BREAKER_ADDRESS:-} \\
-e ASSET_REGISTRY_ADDRESS=\${ASSET_REGISTRY_ADDRESS:-} \\
-e TEE_VERIFIER_ADDRESS=\${TEE_VERIFIER_ADDRESS:-} \\
-e ENCLAVE_ADDRESS=\${ENCLAVE_ADDRESS:-} \\
${IMAGE_TAG}
ExecStop=/usr/bin/docker stop ${CONTAINER_NAME}
TimeoutStopSec=30
[Install]
WantedBy=multi-user.target
EOF
systemctl daemon-reload
systemctl enable ${SERVICE_NAME}
echo " Service file written and enabled."
ENDSSH
ok "systemd service installed"
fi
# ββ Start / restart service βββββββββββββββββββββββββββββββββββββββ
bold ""
bold " ββ Phase 4: Start service"
echo ""
ssh_run "Starting ${SERVICE_NAME}" bash << ENDSSH
set -e
systemctl restart ${SERVICE_NAME}
sleep 4
systemctl is-active ${SERVICE_NAME} && echo " Service is active" || echo " WARNING: service not active"
ENDSSH
ok "Service started"
# ββ Health check βββββββββββββββββββββββββββββββββββββββββββββββββ
if ! $DRY_RUN; then
info "Waiting for health check on :${PORT}/health ..."
sleep 6
HTTP_CODE=$(curl -sf -o /dev/null -w "%{http_code}" \
"http://${DROPLET_IP}:${PORT}/health" 2>/dev/null || echo "000")
if [ "$HTTP_CODE" = "200" ]; then
PAYLOAD=$(curl -sf "http://${DROPLET_IP}:${PORT}/health" 2>/dev/null || echo "{}")
ok "Health check passed β ${PAYLOAD}"
else
warn "Health returned HTTP ${HTTP_CODE} β check logs:"
echo " ssh root@${DROPLET_IP} 'journalctl -u ${SERVICE_NAME} -n 50 --no-pager'"
fi
fi
# ββ GPU status (ROCm only) ββββββββββββββββββββββββββββββββββββββββ
if $USE_ROCM && ! $DRY_RUN; then
echo ""
info "AMD GPU status:"
$SSH "rocm-smi --showproductname --showmeminfo vram 2>/dev/null || echo ' rocm-smi not in PATH on host β check inside container'" \
| sed 's/^/ /'
fi
# ββ Summary βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
echo ""
bold "ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ"
bold "β DEPLOY COMPLETE β"
bold "ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ"
echo ""
printf ' %-12s %s\n' "Dashboard" "http://${DROPLET_IP}:${PORT}"
printf ' %-12s %s\n' "Health" "http://${DROPLET_IP}:${PORT}/health"
printf ' %-12s %s\n' "API" "http://${DROPLET_IP}:${PORT}/api/status"
echo ""
printf ' %-12s %s\n' "Logs" "ssh root@${DROPLET_IP} 'journalctl -u ${SERVICE_NAME} -f'"
printf ' %-12s %s\n' "Shell" "ssh root@${DROPLET_IP}"
if $USE_ROCM; then
printf ' %-12s %s\n' "GPU info" "ssh root@${DROPLET_IP} 'rocm-smi'"
printf ' %-12s %s\n' "VRAM" "192 GB HBM3 β AMD Instinct MI300X"
fi
echo ""
|