From f4c5a8c98bc924555bf59a088baf29f5d064d211 Mon Sep 17 00:00:00 2001 From: Gilad Alboher Date: Tue, 12 Dec 2023 21:25:50 +0200 Subject: [PATCH 1/9] VBoxManage-cloud: add page --- pages/common/VBoxManage-cloud.md | 36 ++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/VBoxManage-cloud.md diff --git a/pages/common/VBoxManage-cloud.md b/pages/common/VBoxManage-cloud.md new file mode 100644 index 0000000000..2c26303079 --- /dev/null +++ b/pages/common/VBoxManage-cloud.md @@ -0,0 +1,36 @@ +# VBoxManage Cloud + +> VirtualBox command-line interface for managing cloud instances and images. +> More information: + +- List Instances: + +`VBoxManage cloud {{provider=name}} {{profile=name}} list instances {{--state=string}} {{--compartment-id=string}}` + +- Create Instance: + +`VBoxManage cloud {{--provider=name}} {{--profile=name}} instance create {{--domain-name=name}} <<--image-id=id>> | <<--boot-volume-id=id>> {{--display-name=name}} {{--shape=type}} {{--subnet=id}} {{--boot-disk-size=size in GB}} {{--publicip=true/false}} {{--privateip=IP address}} {{--public-ssh-key=key string...}} {{--launch-mode=NATIVE/EMULATED/PARAVIRTUALIZED}} {{--cloud-init-script-path=path to a script}}` + +- Instance Information: + +`VBoxManage cloud {{--provider=name}} {{--profile=name}} instance info {{--id=unique id}}` + +- Terminate Instance: + +`VBoxManage cloud {{--provider=name}} {{--profile=name}} instance terminate {{--id=unique id}}` + +- List Images: + +`VBoxManage cloud {{--provider=name}} {{--profile=name}} list images {{--compartment-id=string}} {{--state=string}}` + +- Create Image: + +`VBoxManage cloud {{--provider=name}} {{--profile=name}} image create {{--instance-id=id}} {{--display-name=name}} {{--compartment-id=id}}` + +- Image Information: + +`VBoxManage cloud {{--provider=name}} {{--profile=name}} image info {{--id=unique id}}` + +- Delete Image: + +`VBoxManage cloud {{--provider=name}} {{--profile=name}} image delete {{--id=unique id}}` From c0cf4845cac15619094fba6f1617a8d6e71315b8 Mon Sep 17 00:00:00 2001 From: Gilad Alboher Date: Tue, 12 Dec 2023 22:41:31 +0200 Subject: [PATCH 2/9] VBoxManage-cloud: add page --- pages/common/{VBoxManage-cloud.md => vboxManage-cloud.md} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename pages/common/{VBoxManage-cloud.md => vboxManage-cloud.md} (98%) diff --git a/pages/common/VBoxManage-cloud.md b/pages/common/vboxManage-cloud.md similarity index 98% rename from pages/common/VBoxManage-cloud.md rename to pages/common/vboxManage-cloud.md index 2c26303079..5f2956c317 100644 --- a/pages/common/VBoxManage-cloud.md +++ b/pages/common/vboxManage-cloud.md @@ -1,4 +1,4 @@ -# VBoxManage Cloud +# vboxmanage-cloud > VirtualBox command-line interface for managing cloud instances and images. > More information: From 5ed1fa5b0a02117381cfe3c0d2122681468d9a50 Mon Sep 17 00:00:00 2001 From: Gilad Alboher Date: Tue, 12 Dec 2023 22:48:03 +0200 Subject: [PATCH 3/9] VBoxManage-cloud: fix style --- pages/common/{vboxManage-cloud.md => vboxmanage-cloud.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pages/common/{vboxManage-cloud.md => vboxmanage-cloud.md} (100%) diff --git a/pages/common/vboxManage-cloud.md b/pages/common/vboxmanage-cloud.md similarity index 100% rename from pages/common/vboxManage-cloud.md rename to pages/common/vboxmanage-cloud.md From cc8ff2a9948477528f7fa50ec493461edf1dca01 Mon Sep 17 00:00:00 2001 From: Gilad Alboher Date: Tue, 12 Dec 2023 22:50:33 +0200 Subject: [PATCH 4/9] VBoxManage-cloud: fix style --- pages/common/vboxmanage-cloud.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/vboxmanage-cloud.md b/pages/common/vboxmanage-cloud.md index 5f2956c317..d6afc9007e 100644 --- a/pages/common/vboxmanage-cloud.md +++ b/pages/common/vboxmanage-cloud.md @@ -1,7 +1,7 @@ # vboxmanage-cloud > VirtualBox command-line interface for managing cloud instances and images. -> More information: +> More information: . - List Instances: From b00868d1b9e98833afaec6218cbaa759bbf5303c Mon Sep 17 00:00:00 2001 From: Gilad Alboher Date: Tue, 12 Dec 2023 22:57:01 +0200 Subject: [PATCH 5/9] VBoxManage-cloud: fix style --- pages/common/vboxmanage-cloud.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/vboxmanage-cloud.md b/pages/common/vboxmanage-cloud.md index d6afc9007e..1c79c6ac32 100644 --- a/pages/common/vboxmanage-cloud.md +++ b/pages/common/vboxmanage-cloud.md @@ -9,7 +9,7 @@ - Create Instance: -`VBoxManage cloud {{--provider=name}} {{--profile=name}} instance create {{--domain-name=name}} <<--image-id=id>> | <<--boot-volume-id=id>> {{--display-name=name}} {{--shape=type}} {{--subnet=id}} {{--boot-disk-size=size in GB}} {{--publicip=true/false}} {{--privateip=IP address}} {{--public-ssh-key=key string...}} {{--launch-mode=NATIVE/EMULATED/PARAVIRTUALIZED}} {{--cloud-init-script-path=path to a script}}` +`VBoxManage cloud {{--provider=name}} {{--profile=name}} instance create {{--domain-name=name}} {{--image-id=id}} | {{--boot-volume-id=id}} {{--display-name=name}} {{--shape=type}} {{--subnet=id}} {{--options...}}` - Instance Information: From 0ec00e3a41851ae853ae40340f109b2d6f4795bf Mon Sep 17 00:00:00 2001 From: Gilad Alboher Date: Tue, 12 Dec 2023 23:04:23 +0200 Subject: [PATCH 6/9] VBoxManage-cloud: fix style --- pages/common/vboxmanage-cloud.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/vboxmanage-cloud.md b/pages/common/vboxmanage-cloud.md index 1c79c6ac32..89eb7fa5f1 100644 --- a/pages/common/vboxmanage-cloud.md +++ b/pages/common/vboxmanage-cloud.md @@ -9,7 +9,7 @@ - Create Instance: -`VBoxManage cloud {{--provider=name}} {{--profile=name}} instance create {{--domain-name=name}} {{--image-id=id}} | {{--boot-volume-id=id}} {{--display-name=name}} {{--shape=type}} {{--subnet=id}} {{--options...}}` +`VBoxManage cloud {{--provider=name}} {{--profile=name}} instance create {{--domain-name=name}} {{--image-id=id}} | {{--options...}}` - Instance Information: From 3ca442c38240256376980872438703d20d4cc514 Mon Sep 17 00:00:00 2001 From: Gilad Alboher <136579814+giladAlboher@users.noreply.github.com> Date: Wed, 13 Dec 2023 12:24:07 +0200 Subject: [PATCH 7/9] Update pages/common/vboxmanage-cloud.md Co-authored-by: Juri Dispan --- pages/common/vboxmanage-cloud.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/vboxmanage-cloud.md b/pages/common/vboxmanage-cloud.md index 89eb7fa5f1..e7e785ab8d 100644 --- a/pages/common/vboxmanage-cloud.md +++ b/pages/common/vboxmanage-cloud.md @@ -5,7 +5,7 @@ - List Instances: -`VBoxManage cloud {{provider=name}} {{profile=name}} list instances {{--state=string}} {{--compartment-id=string}}` +`VBoxManage cloud --provider={{provider_name}} --profile={{profile_name}} list instances --state={{running|terminated|paused}} --compartment-id={{compartment_id}}` - Create Instance: From 689de8fd2a300ccc0f89dadb7bace8309e35c41d Mon Sep 17 00:00:00 2001 From: Gilad Alboher <136579814+giladAlboher@users.noreply.github.com> Date: Wed, 13 Dec 2023 12:24:24 +0200 Subject: [PATCH 8/9] Update pages/common/vboxmanage-cloud.md Co-authored-by: Juri Dispan --- pages/common/vboxmanage-cloud.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/vboxmanage-cloud.md b/pages/common/vboxmanage-cloud.md index e7e785ab8d..352cdd1b07 100644 --- a/pages/common/vboxmanage-cloud.md +++ b/pages/common/vboxmanage-cloud.md @@ -3,7 +3,7 @@ > VirtualBox command-line interface for managing cloud instances and images. > More information: . -- List Instances: +- List the instances in the specified state belonging to the specified compartment: `VBoxManage cloud --provider={{provider_name}} --profile={{profile_name}} list instances --state={{running|terminated|paused}} --compartment-id={{compartment_id}}` From 72b7fcd77d5187d7dc36032e004a944689149e34 Mon Sep 17 00:00:00 2001 From: Gilad Alboher Date: Wed, 13 Dec 2023 12:41:57 +0200 Subject: [PATCH 9/9] VBoxManage-cloud: fix style --- pages/common/vboxmanage-cloud.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pages/common/vboxmanage-cloud.md b/pages/common/vboxmanage-cloud.md index 352cdd1b07..0db2bf8df2 100644 --- a/pages/common/vboxmanage-cloud.md +++ b/pages/common/vboxmanage-cloud.md @@ -5,32 +5,32 @@ - List the instances in the specified state belonging to the specified compartment: -`VBoxManage cloud --provider={{provider_name}} --profile={{profile_name}} list instances --state={{running|terminated|paused}} --compartment-id={{compartment_id}}` +`VBoxManage cloud --provider={{provider_name}} --profile={{profile_name}} list instances --state={{running|terminated|paused}} --compartment-id={{compartment_id}` - Create Instance: -`VBoxManage cloud {{--provider=name}} {{--profile=name}} instance create {{--domain-name=name}} {{--image-id=id}} | {{--options...}}` +`VBoxManage cloud --provider={{provider_name}} --profile={{profile_name}} instance create --domain-name={{domain_name}} --image-id={{image_id}} | {{--options...}}` - Instance Information: -`VBoxManage cloud {{--provider=name}} {{--profile=name}} instance info {{--id=unique id}}` +`VBoxManage cloud --provider={{provider_name}} --profile={{profile_name}} instance info --id={{unique_id}}` - Terminate Instance: -`VBoxManage cloud {{--provider=name}} {{--profile=name}} instance terminate {{--id=unique id}}` +`VBoxManage cloud --provider={{provider_name}} --profile={{profile_name}} instance terminate --id={{unique_id}}` - List Images: -`VBoxManage cloud {{--provider=name}} {{--profile=name}} list images {{--compartment-id=string}} {{--state=string}}` +`VBoxManage cloud --provider={{provider_name}} --profile={{profile_name}} list images --compartment-id={{compartment_id}} --state={{state_name}}` - Create Image: -`VBoxManage cloud {{--provider=name}} {{--profile=name}} image create {{--instance-id=id}} {{--display-name=name}} {{--compartment-id=id}}` +`VBoxManage cloud --provider={{provider_name}} --profile={{profile_name}} image create --instance-id={{instance_id}} --display-name={{display_name}} --compartment-id={{compartmet_id}}` - Image Information: -`VBoxManage cloud {{--provider=name}} {{--profile=name}} image info {{--id=unique id}}` +`VBoxManage cloud --provider={{provider_name}} --profile={{profile_name}} image info --id={{unique_id}}` - Delete Image: -`VBoxManage cloud {{--provider=name}} {{--profile=name}} image delete {{--id=unique id}}` +`VBoxManage cloud --provider={{provider_name}} --profile={{profile_name}} image delete --id={{unique_id}}`