ABCDEFGHIJKLMNOPQRSTUVWXYZAA
1
2
This sheet shows how many vCPU and RAM remain approximately after we subtract the resources used by the default K8s services.
3
We observed that those default services use around 650 milli CPU and 750 mb RAM.
4
On top of those we added a 5% error margin since the nodes will not have exactly the promised number of resources.
5
We obtain the results by looking at different types of nodes, with no user-deployed services.
6
7
8
Used FormulasCPU
cpu - 650m - 5% * cpu
where cpu is the value of the CPU from the offer
9
RAMram - 750 - 5% * ram
where ram is the value of the RAM from the offer
10
11
12
13
vCPU(m)Available vCPU(m)RAM(mb)Available RAM(mb)
14
10003001000200
15
2000125020001150
16
3000220030002100
17
4000315040003050
18
5000410050004000
19
6000505060004950
20
7000600070005900
21
8000695080006850
22
9000790090007800
23
100008850100008750
24
110009800110009700
25
12000107501200010650
26
13000117001300011600
27
14000126501400012550
28
15000136001500013500
29
16000145501600014450
30
17000155001700015400
31
18000164501800016350
32
19000174001900017300
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100