mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-05-01 21:30:21 +00:00
Add OVHcloud Public Cloud as a new cloud provider with signature-based API authentication (Application Key + Secret + Consumer Key). Implements: - ovh/lib/common.sh with OVH API wrapper, instance lifecycle, SSH key management - ovh/claude.sh, ovh/aider.sh, ovh/codex.sh agent scripts - manifest.json entries for all 13 agents (3 implemented, 10 missing) - ovh/README.md with setup instructions OVH defaults: d2-2 flavor, GRA7 region, Ubuntu 24.04 Agent: cloud-scout Co-authored-by: B <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
51 lines
1.4 KiB
Bash
51 lines
1.4 KiB
Bash
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" 2>/dev/null && pwd)"
|
|
# shellcheck source=ovh/lib/common.sh
|
|
if [[ -f "${SCRIPT_DIR}/lib/common.sh" ]]; then
|
|
source "${SCRIPT_DIR}/lib/common.sh"
|
|
else
|
|
eval "$(curl -fsSL https://raw.githubusercontent.com/OpenRouterTeam/spawn/main/ovh/lib/common.sh)"
|
|
fi
|
|
|
|
log_info "Codex CLI on OVHcloud"
|
|
echo ""
|
|
|
|
ensure_ovh_authenticated
|
|
ensure_ssh_key
|
|
|
|
SERVER_NAME=$(get_server_name)
|
|
create_ovh_instance "${SERVER_NAME}"
|
|
wait_for_ovh_instance "${OVH_INSTANCE_ID}"
|
|
verify_server_connectivity "${OVH_SERVER_IP}"
|
|
|
|
# Install base dependencies
|
|
install_base_deps "${OVH_SERVER_IP}"
|
|
|
|
log_warn "Installing Codex CLI..."
|
|
run_ovh "${OVH_SERVER_IP}" "npm install -g @openai/codex"
|
|
log_info "Codex CLI installed"
|
|
|
|
echo ""
|
|
if [[ -n "${OPENROUTER_API_KEY:-}" ]]; then
|
|
log_info "Using OpenRouter API key from environment"
|
|
else
|
|
OPENROUTER_API_KEY=$(get_openrouter_api_key_oauth 5180)
|
|
fi
|
|
|
|
log_warn "Setting up environment variables..."
|
|
inject_env_vars_ovh "${OVH_SERVER_IP}" \
|
|
"OPENROUTER_API_KEY=${OPENROUTER_API_KEY}" \
|
|
"OPENAI_API_KEY=${OPENROUTER_API_KEY}" \
|
|
"OPENAI_BASE_URL=https://openrouter.ai/api/v1"
|
|
|
|
echo ""
|
|
log_info "OVHcloud instance setup completed successfully!"
|
|
log_info "Instance: ${SERVER_NAME} (ID: ${OVH_INSTANCE_ID}, IP: ${OVH_SERVER_IP})"
|
|
echo ""
|
|
|
|
log_warn "Starting Codex..."
|
|
sleep 1
|
|
clear
|
|
interactive_session "${OVH_SERVER_IP}" "source ~/.zshrc && codex"
|