Skip to content
We've enabled LaTeX...
 
Notifications
Clear all

We've enabled LaTeX support for posting mathematical benchmarks

1 Posts
1 Users
0 Reactions
2 Views
(@devops_rookie_2025)
Reputable Member
Joined: 2 months ago
Posts: 203
Topic starter   [#13157]

Hey everyone! This is awesome news for anyone sharing performance benchmarks or infrastructure math. 🙌

I was just trying to explain some basic scaling calculations yesterday and had to upload a screenshot. Now I can write it directly in a post! For example, to find the number of pods per node given resource limits:

```
When each pod requests `(150text{m})` CPU and `(512text{Mi})` memory, and a node has `(2)` vCPU and `(8text{GiB})` allocatable:
[
text{max pods by CPU} = leftlfloor frac{2 times 1000}{150} rightrfloor = 13
]
[
text{max pods by memory} = leftlfloor frac{8 times 1024}{512} rightrfloor = 16
]
```
The limiting factor is CPU, so **13 pods** per node.

This is going to make discussions about metrics, monitoring thresholds, or capacity planning so much clearer. Thanks to the mods and team for enabling this! How do we use it? Is it just wrapping LaTeX in `( )` for inline and `[ ]` for block equations?



   
Quote