Skip to content

Commit

Permalink
Merge pull request crc-org#246 from lstocchi/i243
Browse files Browse the repository at this point in the history
fix: set correct minimum memory values in package.json
  • Loading branch information
lstocchi authored Jul 31, 2024
2 parents 2f809c9 + 93e568f commit e3937e3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"crc.factory.openshift.memory": {
"type": "number",
"format": "memory",
"minimum": 11000000000,
"default": 11000000000,
"minimum": 11274289152,
"default": 11274289152,
"maximum": "HOST_TOTAL_MEMORY",
"step": 500000000,
"description": "Memory size",
Expand All @@ -33,8 +33,8 @@
"crc.factory.microshift.memory": {
"type": "number",
"format": "memory",
"minimum": 4000000000,
"default": 4000000000,
"minimum": 4294967296,
"default": 4294967296,
"maximum": "HOST_TOTAL_MEMORY",
"step": 500000000,
"description": "Memory size",
Expand Down Expand Up @@ -85,7 +85,7 @@
"crc.factory.disksize": {
"type": "number",
"format": "diskSize",
"minimum": 35000000000,
"minimum": 37580963840,
"maximum": "HOST_TOTAL_DISKSIZE",
"step": 500000000,
"description": "Disk size",
Expand Down

0 comments on commit e3937e3

Please sign in to comment.