Categorygithub.com/jumppad-labs/cloudhypervisor-go-sdk
repositorypackage
0.1.0
Repository: https://github.com/jumppad-labs/cloudhypervisor-go-sdk.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

Cloud Hypervisor Golang SDK

Example

Download and prepare assets.

make assets

Build the example code.

make build

Run the example code.

make run

Login using jumppad as user and cloud123 as password.

Ubuntu 24.04 LTS microvm hvc0

microvm login:

From another terminal session, confirm that the virtual machine is running.

sudo curl -s --unix-socket /tmp/cloud-hypervisor.sock \
  http://localhost/api/v1/vm.info | jq .

To exit and cleanup. Either shutdown the machine gracefully or forcefully.

# Gracefully from inside the vm.
jumppad@microvm:~$ sudo shutdown -h now

# Then after a few seconds, exit the process with CTRL+C
# Forcefully from outside the vm.
make kill