From 106d3a7bd920ff281bfeffa1bc0b7a3b7fb7027d Mon Sep 17 00:00:00 2001 From: devmatrix Date: Wed, 18 Feb 2026 13:29:56 +0000 Subject: [PATCH] Update VM references from 101/201 to 202 --- PROXMOX_PRODUCTION_SETUP.md | 24 +++++++++++++----------- PROXMOX_VM_OPTIMIZED_CONFIG.md | 10 +++++----- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/PROXMOX_PRODUCTION_SETUP.md b/PROXMOX_PRODUCTION_SETUP.md index 0ce385a..c75433d 100644 --- a/PROXMOX_PRODUCTION_SETUP.md +++ b/PROXMOX_PRODUCTION_SETUP.md @@ -7,23 +7,25 @@ Create isolated production environment with security hardening, resource guarant ``` Proxmox Host -├── VM-100: DevMatrix-Dev (Current - Development/Staging) -│ ├── Mission Control (dev) -│ ├── Gitea (dev repos) -│ └── Testing/Experiments +├── VM-200: compute-node-01 (production compute) +├── VM-201: production servers │ -└── VM-101: DevMatrix-Prod (NEW - Production Only) - ├── Mission Control (production) - ├── Reverse Proxy (Traefik) - ├── Monitoring (Prometheus/Grafana) - └── Public-facing services +├── VM-202: DevMatrix-Prod (NEW - Mission Control Production) +│ ├── Mission Control (production) +│ ├── Reverse Proxy (Traefik) +│ ├── Monitoring (Prometheus/Grafana) +│ └── Public-facing services +│ +├── VM-300: OpenClaw-DevMatrix (Development) +├── VM-301: Windows-LTSC-Test +└── VM-302: Android-Emulator ``` ## VM Specifications -### Production VM (VM-101) +### Production VM (VM-202) - **Name:** DevMatrix-Prod -- **VM ID:** 101 +- **VM ID:** 202 - **OS:** Ubuntu 22.04 LTS (minimal server) - **CPU:** 4 cores (dedicated, not shared) - **RAM:** 8GB (reserved, not ballooning) diff --git a/PROXMOX_VM_OPTIMIZED_CONFIG.md b/PROXMOX_VM_OPTIMIZED_CONFIG.md index 511111d..118d664 100644 --- a/PROXMOX_VM_OPTIMIZED_CONFIG.md +++ b/PROXMOX_VM_OPTIMIZED_CONFIG.md @@ -11,9 +11,9 @@ Based on your Proxmox hardware, here's the optimized VM configuration: ## ⚙️ Optimized VM Settings -### VM Configuration (VM-201) +### VM Configuration (VM-202) ```yaml -VM ID: 201 (101 already exists) +VM ID: 202 Name: DevMatrix-Prod CPU: 6 cores (dedicated) Sockets: 2 (matches your dual-CPU setup) @@ -184,13 +184,13 @@ If you need more resources later: ```bash # Add more CPU -qm set 201 --cores 8 +qm set 202 --cores 8 # Add more RAM -qm set 201 --memory 24576 +qm set 202 --memory 24576 # Resize disk -qm disk resize 201 scsi0 +50G +qm disk resize 202 scsi0 +50G ``` All changes can be done live without downtime!