Update VM references from 101/201 to 202

This commit is contained in:
devmatrix 2026-02-18 13:29:56 +00:00
parent 7e9502ca02
commit 106d3a7bd9
2 changed files with 18 additions and 16 deletions

View File

@ -7,23 +7,25 @@ Create isolated production environment with security hardening, resource guarant
``` ```
Proxmox Host Proxmox Host
├── VM-100: DevMatrix-Dev (Current - Development/Staging) ├── VM-200: compute-node-01 (production compute)
│ ├── Mission Control (dev) ├── VM-201: production servers
│ ├── Gitea (dev repos)
│ └── Testing/Experiments
└── VM-101: DevMatrix-Prod (NEW - Production Only) ├── VM-202: DevMatrix-Prod (NEW - Mission Control Production)
├── Mission Control (production) │ ├── Mission Control (production)
├── Reverse Proxy (Traefik) │ ├── Reverse Proxy (Traefik)
├── Monitoring (Prometheus/Grafana) │ ├── Monitoring (Prometheus/Grafana)
└── Public-facing services │ └── Public-facing services
├── VM-300: OpenClaw-DevMatrix (Development)
├── VM-301: Windows-LTSC-Test
└── VM-302: Android-Emulator
``` ```
## VM Specifications ## VM Specifications
### Production VM (VM-101) ### Production VM (VM-202)
- **Name:** DevMatrix-Prod - **Name:** DevMatrix-Prod
- **VM ID:** 101 - **VM ID:** 202
- **OS:** Ubuntu 22.04 LTS (minimal server) - **OS:** Ubuntu 22.04 LTS (minimal server)
- **CPU:** 4 cores (dedicated, not shared) - **CPU:** 4 cores (dedicated, not shared)
- **RAM:** 8GB (reserved, not ballooning) - **RAM:** 8GB (reserved, not ballooning)

View File

@ -11,9 +11,9 @@ Based on your Proxmox hardware, here's the optimized VM configuration:
## ⚙️ Optimized VM Settings ## ⚙️ Optimized VM Settings
### VM Configuration (VM-201) ### VM Configuration (VM-202)
```yaml ```yaml
VM ID: 201 (101 already exists) VM ID: 202
Name: DevMatrix-Prod Name: DevMatrix-Prod
CPU: 6 cores (dedicated) CPU: 6 cores (dedicated)
Sockets: 2 (matches your dual-CPU setup) Sockets: 2 (matches your dual-CPU setup)
@ -184,13 +184,13 @@ If you need more resources later:
```bash ```bash
# Add more CPU # Add more CPU
qm set 201 --cores 8 qm set 202 --cores 8
# Add more RAM # Add more RAM
qm set 201 --memory 24576 qm set 202 --memory 24576
# Resize disk # Resize disk
qm disk resize 201 scsi0 +50G qm disk resize 202 scsi0 +50G
``` ```
All changes can be done live without downtime! All changes can be done live without downtime!