fix: reduce RAM requirements for Mac/Ubuntu installers to 8GB

- Mac installer: 16GB → 8GB
- Ubuntu installer: 16GB → 8GB
- DGX installer: 64GB → 32GB (matches container reservations)
- x86 docker-compose: reduced container memory limits to match ARM64

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
HackWeasel
2025-12-29 13:16:10 -05:00
parent 81be5f6db8
commit 8b0c2b5595
4 changed files with 11 additions and 11 deletions

View File

@@ -35,17 +35,17 @@ services:
tenant-postgres-primary: tenant-postgres-primary:
environment: environment:
# x86_64 Performance settings - optimized for typical server specs # x86_64 Performance settings - optimized for typical server specs
POSTGRES_SHARED_BUFFERS: 2GB POSTGRES_SHARED_BUFFERS: 1GB
POSTGRES_EFFECTIVE_CACHE_SIZE: 6GB POSTGRES_EFFECTIVE_CACHE_SIZE: 3GB
POSTGRES_MAINTENANCE_WORK_MEM: 512MB POSTGRES_MAINTENANCE_WORK_MEM: 512MB
POSTGRES_MAX_CONNECTIONS: 300 POSTGRES_MAX_CONNECTIONS: 300
POSTGRES_WORK_MEM: 128MB POSTGRES_WORK_MEM: 128MB
deploy: deploy:
resources: resources:
limits: limits:
memory: 8G
reservations:
memory: 4G memory: 4G
reservations:
memory: 2G
labels: labels:
- "gt2.platform=x86_64" - "gt2.platform=x86_64"
@@ -69,8 +69,8 @@ services:
deploy: deploy:
resources: resources:
limits: limits:
memory: 16G memory: 4G
reservations: reservations:
memory: 8G memory: 3G
labels: labels:
- "gt2.platform=x86_64" - "gt2.platform=x86_64"

View File

@@ -15,7 +15,7 @@ NC='\033[0m' # No Color
# Configuration # Configuration
INSTALLER_VERSION="1.0.0" INSTALLER_VERSION="1.0.0"
INSTALL_DIR="/opt/gt2" INSTALL_DIR="/opt/gt2"
MIN_RAM_GB=64 MIN_RAM_GB=32
MIN_DISK_GB=50 MIN_DISK_GB=50
GITHUB_REPO="https://github.com/GT-Edge-AI-Internal/gt-ai-os-community.git" GITHUB_REPO="https://github.com/GT-Edge-AI-Internal/gt-ai-os-community.git"
RELEASE_URL="https://api.github.com/repos/GT-Edge-AI-Internal/gt-ai-os-community/releases/latest" RELEASE_URL="https://api.github.com/repos/GT-Edge-AI-Internal/gt-ai-os-community/releases/latest"
@@ -71,7 +71,7 @@ OPTIONS:
REQUIREMENTS: REQUIREMENTS:
- NVIDIA DGX OS or Ubuntu with NVIDIA drivers - NVIDIA DGX OS or Ubuntu with NVIDIA drivers
- ARM64 architecture (Grace) - ARM64 architecture (Grace)
- 64GB+ RAM - 32GB+ RAM
- 50GB+ free disk space - 50GB+ free disk space
- NVIDIA Container Runtime - NVIDIA Container Runtime
- sudo access - sudo access

View File

@@ -16,7 +16,7 @@ NC='\033[0m' # No Color
INSTALLER_VERSION="1.0.0" INSTALLER_VERSION="1.0.0"
INSTALL_DIR="${HOME}/GT-2.0" INSTALL_DIR="${HOME}/GT-2.0"
MIN_MACOS_VERSION="12" MIN_MACOS_VERSION="12"
MIN_RAM_GB=16 MIN_RAM_GB=8
MIN_DISK_GB=20 MIN_DISK_GB=20
GITHUB_REPO="https://github.com/GT-Edge-AI-Internal/gt-ai-os-community.git" GITHUB_REPO="https://github.com/GT-Edge-AI-Internal/gt-ai-os-community.git"
RELEASE_URL="https://api.github.com/repos/GT-Edge-AI-Internal/gt-ai-os-community/releases/latest" RELEASE_URL="https://api.github.com/repos/GT-Edge-AI-Internal/gt-ai-os-community/releases/latest"

View File

@@ -16,7 +16,7 @@ NC='\033[0m' # No Color
INSTALLER_VERSION="1.0.0" INSTALLER_VERSION="1.0.0"
INSTALL_DIR="/opt/gt2" INSTALL_DIR="/opt/gt2"
MIN_UBUNTU_VERSION="22.04" MIN_UBUNTU_VERSION="22.04"
MIN_RAM_GB=16 MIN_RAM_GB=8
MIN_DISK_GB=20 MIN_DISK_GB=20
GITHUB_REPO="https://github.com/GT-Edge-AI-Internal/gt-ai-os-community.git" GITHUB_REPO="https://github.com/GT-Edge-AI-Internal/gt-ai-os-community.git"
RELEASE_URL="https://api.github.com/repos/GT-Edge-AI-Internal/gt-ai-os-community/releases/latest" RELEASE_URL="https://api.github.com/repos/GT-Edge-AI-Internal/gt-ai-os-community/releases/latest"
@@ -75,7 +75,7 @@ OPTIONS:
REQUIREMENTS: REQUIREMENTS:
- Ubuntu 22.04 or higher - Ubuntu 22.04 or higher
- x86_64 architecture - x86_64 architecture
- 16GB+ RAM - 8GB+ RAM
- 20GB+ free disk space - 20GB+ free disk space
- sudo access - sudo access