Skip to content

Commit b236258

Browse files
committed
chore(limits): change default cpu and gpu name
1 parent cb026f9 commit b236258

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

charts/controller/templates/_helpers.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ resources:
228228
pk: std1
229229
fields:
230230
cpu:
231-
name: Unknown CPU
231+
name: Universal CPU
232232
cores: 32
233233
clock: 3100MHZ
234234
boost: 3700MHZ
@@ -238,7 +238,7 @@ resources:
238238
type: DDR4-ECC
239239
features:
240240
gpu:
241-
name: Unknown Integrated GPU
241+
name: Integrated GPU
242242
tmus: 1
243243
rops: 1
244244
cores: 128

rootfs/api/fixtures/tests.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
"pk": "std1",
9595
"fields": {
9696
"cpu": {
97-
"name": "Unknown CPU",
97+
"name": "Universal CPU",
9898
"cores": 32,
9999
"clock": "3100MHZ",
100100
"boost": "3700MHZ",
@@ -106,7 +106,7 @@
106106
},
107107
"features": {
108108
"gpu": {
109-
"name": "Unknown Integrated GPU",
109+
"name": "Integrated GPU",
110110
"tmus": 1,
111111
"rops": 1,
112112
"cores": 128,

rootfs/api/tests/test_limit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def test_get_limits_specs(self, mock_requests):
2929
results = {
3030
"id": "std1",
3131
"cpu": {
32-
"name": "Unknown CPU",
32+
"name": "Universal CPU",
3333
"boost": "3700MHZ",
3434
"clock": "3100MHZ",
3535
"cores": 32,
@@ -41,7 +41,7 @@ def test_get_limits_specs(self, mock_requests):
4141
},
4242
"features": {
4343
"gpu": {
44-
"name": "Unknown Integrated GPU",
44+
"name": "Integrated GPU",
4545
"rops": 1,
4646
"tmus": 1,
4747
"cores": 128,

0 commit comments

Comments
 (0)