Files
aitbc/backups/pre_deployment_20260402_120429/config/edge-node-aitbc1.yaml
aitbc c876b0aa20 feat: implement AITBC mesh network deployment infrastructure
 Phase 0: Pre-implementation checklist completed
- Environment configurations (dev/staging/production)
- Directory structure setup (logs, backups, monitoring)
- Virtual environment with dependencies

 Master deployment script created
- Single command deployment with validation
- Progress tracking and rollback capability
- Health checks and deployment reporting

 Validation script created
- Module import validation
- Basic functionality testing
- Configuration and script verification

 Implementation fixes
- Fixed dataclass import in consensus keys
- Fixed async function syntax in tests
- Updated deployment script for virtual environment

🚀 Ready for deployment: ./scripts/deploy-mesh-network.sh dev
2026-04-02 12:08:15 +02:00

61 lines
1.3 KiB
YAML

# Edge Node Configuration - aitbc1 (Secondary Container)
edge_node_config:
node_id: "aitbc1-edge-secondary"
region: "us-west"
location: "secondary-dev-container"
services:
- name: "marketplace-api"
port: 8002
health_check: "/health/live"
enabled: true
- name: "cache-layer"
port: 6379
type: "redis"
enabled: true
- name: "monitoring-agent"
port: 9091
type: "prometheus"
enabled: true
network:
cdn_integration: true
tcp_optimization: true
ipv6_support: true
bandwidth_mbps: 1000
latency_optimization: true
resources:
cpu_cores: 8
memory_gb: 32
storage_gb: 500
gpu_access: false # No GPU in containers
caching:
redis_enabled: true
cache_ttl_seconds: 300
max_memory_mb: 1024
cache_strategy: "lru"
monitoring:
metrics_enabled: true
health_check_interval: 30
performance_tracking: true
log_level: "info"
security:
firewall_enabled: true
rate_limiting: true
ssl_termination: true
load_balancing:
algorithm: "weighted_round_robin"
weight: 2
backup_nodes: ["aitbc-edge-primary"]
performance_targets:
response_time_ms: 50
throughput_rps: 1000
cache_hit_rate: 0.9
error_rate: 0.01