docs(hardware): drop the model field
Removed from per-host frontmatter, the index column, and the Specs table. Model values kept churning (case manufacturer vs. "custom") without adding useful information. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
c0b6986984
commit
7b59a9c1b8
9 changed files with 8 additions and 16 deletions
|
|
@ -4,11 +4,11 @@ _Auto-generated from `docs/hardware/*.md` — do not edit by hand. Run `make doc
|
|||
|
||||
## Servers
|
||||
|
||||
| Hostname | Model | Location | CPU | RAM | Storage | NIC | Status |
|
||||
|---|---|---|---|---|---|---|---|
|
||||
| [makerfloss.eu](makerfloss.eu.md) | Hetzner CX22 | Hetzner HEL1 (cloud) | AMD EPYC (shared vCPU) · 2c | 4 GB | 40 GB NVME | 1 GbE | in-use |
|
||||
| [mf00](mf00.md) | custom | The pile | ? | ? | ? | ? | staging |
|
||||
| [mf01](mf01.md) | HP Elitedesk 800 G4 TWR | The pile | Intel Core i5-8500 @ 3.00GHz · 6c | 8 GB | 40 GB NVME | 1 GbE | staging |
|
||||
| [mf02](mf02.md) | HP Elitedesk 800 G4 TWR | The pile | Intel Core i5-8500 @ 3.00GHz · 6c | 16 GB | 40 GB NVME | 1 GbE | staging |
|
||||
| [mf03](mf03.md) | custom | The pile | Intel Core i5-3570K @ 3.40GHz · 4c | 8 GB | 500 GB HDD | 1 GbE | staging |
|
||||
| [mf04](mf04.md) | custom | The pile | Intel Core i5-3570K @ 3.40GHz · 4c | 8 GB | 500 GB HDD | 1 GbE | staging |
|
||||
| Hostname | Location | CPU | RAM | Storage | NIC | Status |
|
||||
|---|---|---|---|---|---|---|
|
||||
| [makerfloss.eu](makerfloss.eu.md) | Hetzner HEL1 (cloud) | AMD EPYC (shared vCPU) · 2c | 4 GB | 40 GB NVME | 1 GbE | in-use |
|
||||
| [mf00](mf00.md) | The pile | ? | ? | ? | ? | staging |
|
||||
| [mf01](mf01.md) | The pile | Intel Core i5-8500 @ 3.00GHz · 6c | 8 GB | 40 GB NVME | 1 GbE | staging |
|
||||
| [mf02](mf02.md) | The pile | Intel Core i5-8500 @ 3.00GHz · 6c | 16 GB | 40 GB NVME | 1 GbE | staging |
|
||||
| [mf03](mf03.md) | The pile | Intel Core i5-3570K @ 3.40GHz · 4c | 8 GB | 500 GB HDD | 1 GbE | staging |
|
||||
| [mf04](mf04.md) | The pile | Intel Core i5-3570K @ 3.40GHz · 4c | 8 GB | 500 GB HDD | 1 GbE | staging |
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
hostname: makerfloss.eu
|
||||
kind: server
|
||||
status: in-use
|
||||
model: Hetzner CX22
|
||||
location: Hetzner HEL1 (cloud)
|
||||
cpu: AMD EPYC (shared vCPU)
|
||||
cpu_cores: 2
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
hostname: mf00
|
||||
kind: server
|
||||
status: staging
|
||||
model: custom
|
||||
location: The pile
|
||||
cpu: "?"
|
||||
cpu_cores: "?"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
hostname: mf01
|
||||
kind: server
|
||||
status: staging
|
||||
model: HP Elitedesk 800 G4 TWR
|
||||
location: The pile
|
||||
cpu: Intel Core i5-8500 @ 3.00GHz
|
||||
cpu_cores: 6
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
hostname: mf02
|
||||
kind: server
|
||||
status: staging
|
||||
model: HP Elitedesk 800 G4 TWR
|
||||
location: The pile
|
||||
cpu: Intel Core i5-8500 @ 3.00GHz
|
||||
cpu_cores: 6
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
hostname: mf03
|
||||
kind: server
|
||||
status: staging
|
||||
model: custom
|
||||
location: The pile
|
||||
cpu: Intel Core i5-3570K @ 3.40GHz
|
||||
cpu_cores: 4
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
hostname: mf04
|
||||
kind: server
|
||||
status: staging
|
||||
model: custom
|
||||
location: The pile
|
||||
cpu: Intel Core i5-3570K @ 3.40GHz
|
||||
cpu_cores: 4
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ def _table(rows: list[tuple[str, str]]) -> str:
|
|||
|
||||
def _hardware_page(meta: dict, body: str) -> str:
|
||||
rows = [
|
||||
("Model", meta.get("model")),
|
||||
("Location", meta.get("location")),
|
||||
("CPU", fmt_cpu(meta)),
|
||||
("RAM", fmt_ram(meta)),
|
||||
|
|
|
|||
|
|
@ -30,7 +30,6 @@ hardware:
|
|||
sort_by: hostname
|
||||
columns:
|
||||
- { header: Hostname, kind: key-link, field: hostname }
|
||||
- { header: Model, field: model }
|
||||
- { header: Location, field: location }
|
||||
- { header: CPU, kind: cpu }
|
||||
- { header: RAM, kind: ram }
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue