Apply Composer changes: comprehensive API updates, migrations, middleware, and infrastructure improvements

- Add comprehensive database migrations (001-024) for schema evolution
- Enhance API schema with expanded type definitions and resolvers
- Add new middleware: audit logging, rate limiting, MFA enforcement, security, tenant auth
- Implement new services: AI optimization, billing, blockchain, compliance, marketplace
- Add adapter layer for cloud integrations (Cloudflare, Kubernetes, Proxmox, storage)
- Update Crossplane provider with enhanced VM management capabilities
- Add comprehensive test suite for API endpoints and services
- Update frontend components with improved GraphQL subscriptions and real-time updates
- Enhance security configurations and headers (CSP, CORS, etc.)
- Update documentation and configuration files
- Add new CI/CD workflows and validation scripts
- Implement design system improvements and UI enhancements
This commit is contained in:
defiQUG
2025-12-12 18:01:35 -08:00
parent e01131efaf
commit 9daf1fd378
968 changed files with 160890 additions and 1092 deletions

59
scripts/ssh-proxmox-sites.sh Executable file
View File

@@ -0,0 +1,59 @@
#!/bin/bash
# SSH to Proxmox Sites
set -e
# Colors
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m' # No Color
echo -e "${BLUE}=== Proxmox Site SSH Connections ===${NC}"
echo ""
echo "Site 1 (ml110-01): 192.168.11.10"
echo "Site 2 (r630-01): 192.168.11.11"
echo ""
# Function to connect to a site
connect_site() {
local IP=$1
local NAME=$2
local SITE=$3
echo -e "${YELLOW}Connecting to $NAME ($SITE) at $IP...${NC}"
echo ""
ssh -o StrictHostKeyChecking=no root@$IP
}
# Menu
echo "Select which Proxmox server to connect to:"
echo " 1) Site 1 - ml110-01 (192.168.11.10)"
echo " 2) Site 2 - r630-01 (192.168.11.11)"
echo " 3) Both (test connectivity)"
echo ""
read -p "Enter choice [1-3]: " choice
case $choice in
1)
connect_site "192.168.11.10" "ml110-01" "Site 1"
;;
2)
connect_site "192.168.11.11" "r630-01" "Site 2"
;;
3)
echo -e "${YELLOW}Testing connectivity to both sites...${NC}"
echo ""
echo "Site 1 (192.168.11.10):"
ssh -o ConnectTimeout=3 -o StrictHostKeyChecking=no root@192.168.11.10 "hostname && pveversion" 2>&1 | head -5 || echo " Not reachable or requires authentication"
echo ""
echo "Site 2 (192.168.11.11):"
ssh -o ConnectTimeout=3 -o StrictHostKeyChecking=no root@192.168.11.11 "hostname && pveversion" 2>&1 | head -5 || echo " Not reachable or requires authentication"
;;
*)
echo "Invalid choice"
exit 1
;;
esac