krunvm: add page, add Spanish translation (#9575)

This commit is contained in:
Juan Manuel Parrilla Madrid
2022-12-09 15:47:29 +01:00
committed by GitHub
parent 3a540d3b3f
commit 75e5d87936
2 changed files with 48 additions and 0 deletions

24
pages/common/krunvm.md Normal file
View File

@@ -0,0 +1,24 @@
# krunvm
> CLI-based utility for creating MicroVMs from OCI images.
> More information: <https://github.com/containers/krunvm>.
- Create MicroVM based on Fedora:
`krunvm create {{docker.io/fedora}} --cpus {{number_of_vcpus}} --mem {{memory_in_megabytes}} --name "{{name}}"`
- Start a specific image:
`krunvm start "{{image_name}}"`
- List images:
`krunvm list`
- Change a specific image:
`krunvm changevm --cpus {{number_of_vcpus}} --mem {{memory_in_megabytes}} --name "{{new_vm_name}}" "{{current_vm_name}}"`
- Delete a specific image:
`krunvm delete "{{image_name}}"`