Browse Source

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

Juan Manuel Parrilla Madrid 2 years ago
parent
commit
75e5d87936
2 changed files with 48 additions and 0 deletions
  1. 24 0
      pages.es/common/krunvm.md
  2. 24 0
      pages/common/krunvm.md

+ 24 - 0
pages.es/common/krunvm.md

@@ -0,0 +1,24 @@
+# krunvm
+
+> Utilidad basada en CLI para crear micro máquinas virtuales utilizando imagenes OCI.
+> Más información: <https://github.com/containers/krunvm>.
+
+- Crea una micro máquina virtual basada en Fedora:
+
+`krunvm create {{docker.io/fedora}} --cpus {{numero_de_vcpus}} --mem {{memoria_en_megabytes}} --name "{{nombre}}"`
+
+- Inicia una imagen especifica:
+
+`krunvm start "{{nombre}}"`
+
+- Lista las imagenes existentes:
+
+`krunvm list`
+
+- Cambia una imagen especifica:
+
+`krunvm changevm --cpus {{numero_de_vcpus}} --mem {{memoria_en_megabytes}} --name "{{nuevo_nombre}}" "{{nombre}}"`
+
+- Borra una imagen especifica:
+
+`krunvm delete "{{nombre}}"`

+ 24 - 0
pages/common/krunvm.md

@@ -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}}"`