Skip to content

Commit

Permalink
Merge pull request #32 from meglenast/master
Browse files Browse the repository at this point in the history
Fix incorrect c3 instance types bandwidth accordingly to GCP document…
  • Loading branch information
Cyclenerd authored Dec 17, 2024
2 parents bd9d6e9 + c26b2ab commit 7f54c24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions instances/series/c3.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ bandwidth = '32',
spot = '1'
WHERE name LIKE 'c3-%';

UPDATE instances SET bandwidth = '32' WHERE name LIKE 'c3-%-4%';
UPDATE instances SET bandwidth = '32' WHERE name LIKE 'c3-%-8%';
UPDATE instances SET bandwidth = '32' WHERE name LIKE 'c3-%-22%';
UPDATE instances SET bandwidth = '23' WHERE name LIKE 'c3-%-4%';
UPDATE instances SET bandwidth = '23' WHERE name LIKE 'c3-%-8%';
UPDATE instances SET bandwidth = '23' WHERE name LIKE 'c3-%-22%';
UPDATE instances SET bandwidth = '32' WHERE name LIKE 'c3-%-44%';
UPDATE instances SET bandwidth = '62' WHERE name LIKE 'c3-%-88%';
UPDATE instances SET bandwidth = '100' WHERE name LIKE 'c3-%-176%';
Expand Down

0 comments on commit 7f54c24

Please sign in to comment.