Skip to content

Commit

Permalink
Merge pull request #59 from ajanon/vm_disk_size
Browse files Browse the repository at this point in the history
fix(exp,ref): swap container and vm minimum disk size
  • Loading branch information
keirthana authored Apr 11, 2024
2 parents 5bda8ce + 429de9f commit ebcfd3f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions explanation/resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name: my-application
resources:
cpus: 2
memory: 3GB
disk-size: 15GB
disk-size: 3GB
```
For a virtual machine instance, the default resource preset is:
Expand All @@ -16,7 +16,7 @@ name: my-application
resources:
cpus: 2
memory: 3GB
disk-size: 3GB
disk-size: 15GB
```
If your application requires different resources than the default, specify the required resources in the application manifest to override some or all of default resource preset options.
Expand Down
2 changes: 1 addition & 1 deletion reference/amc-command-reference/init.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The following options are available:
| `-c`, `--cpus` | Integer | Number of CPU cores to be assigned for the instance. | 2 |
| `--devmode` | | Enables developer mode for the instance. | Disabled |
| `--disable-watchdog` | | Disables watchdog for the instance. Applicable for regular instances only. | |
| `-d`, `--disk-size` | String | Disk size of the instance. | 15 GB for a container instance;<br/> 3 GB for a virtual machine instance |
| `-d`, `--disk-size` | String | Disk size of the instance. | 3 GB for a container instance;<br/> 15 GB for a virtual machine instance |
| `--enable-graphics` | | Enables graphics for the instance | Disabled |
| `-f`, `--features` | String | Comma-separated list of features to enable for the Anbox runtime inside the instance | |
| `-g`, `--gpu-slots` | Integer | Number of GPU slots to be assigned for the instance. | -1 |
Expand Down
2 changes: 1 addition & 1 deletion reference/amc-command-reference/launch.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The following options are available:
| `-c`, `--cpus` | Integer | Number of CPU cores to be assigned for the instance. | 2 |
| `--devmode` | | Enables developer mode for the instance. | Disabled |
| `--disable-watchdog` | | Disables watchdog for the instance. Applicable for regular instances only. | |
| `-d`, `--disk-size` | String | Disk size of the instance. | 15 GB for a container instance;<br/> 3 GB for a virtual machine instance |
| `-d`, `--disk-size` | String | Disk size of the instance. | 3 GB for a container instance;<br/> 15 GB for a virtual machine instance |
| `--enable-graphics` | | Enables graphics for the instance | Disabled |
| `-f`, `--features` | String | Comma-separated list of features to enable for the Anbox runtime inside the instance | |
| `-g`, `--gpu-slots` | Integer | Number of GPU slots to be assigned for the instance. | -1 |
Expand Down

0 comments on commit ebcfd3f

Please sign in to comment.