Update VM references from 101/201 to 202
This commit is contained in:
parent
7e9502ca02
commit
106d3a7bd9
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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!
|
||||
|
|
|
|||
Loading…
Reference in New Issue