Skip to content

Commit

Permalink
fix: change defaults for Podman machine (#3061)
Browse files Browse the repository at this point in the history
* fix: change defaults for Podman machine

Fixes #3047

Signed-off-by: Jeff MAURY <jmaury@redhat.com>
  • Loading branch information
jeffmaury committed Jul 5, 2023
1 parent 23da2f1 commit 1e337d9
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions extensions/podman/package.json
Expand Up @@ -30,15 +30,15 @@
"type": "number",
"format": "cpu",
"minimum": 1,
"default": 1,
"default": 2,
"scope": "ContainerConnection",
"description": "CPU(s)"
},
"podman.machine.memory": {
"type": "number",
"format": "memory",
"minimum": 1024000000,
"default": 2048000000,
"minimum": 1000000000,
"default": 4000000000,
"scope": "ContainerConnection",
"description": "Memory"
},
Expand All @@ -58,7 +58,7 @@
"podman.factory.machine.cpus": {
"type": "number",
"format": "cpu",
"default": 1,
"default": 2,
"minimum": 1,
"maximum": "HOST_TOTAL_CPU",
"scope": "ContainerProviderConnectionFactory",
Expand All @@ -67,8 +67,8 @@
"podman.factory.machine.memory": {
"type": "number",
"format": "memory",
"minimum": 1024000000,
"default": 2048000000,
"minimum": 1000000000,
"default": 4000000000,
"maximum": "HOST_TOTAL_MEMORY",
"scope": "ContainerProviderConnectionFactory",
"description": "Memory"
Expand All @@ -90,6 +90,7 @@
},
"podman.factory.machine.rootful": {
"type": "boolean",
"default": true,
"scope": "ContainerProviderConnectionFactory",
"description": "Machine with root privileges"
}
Expand Down

0 comments on commit 1e337d9

Please sign in to comment.