hyperkit
hyperkit copied to clipboard
Hyperkit is a flat, Ruby-based API wrapper for LXD, the next-generation hypervisor.
Seems to blow up with the latest version of faraday... ``` NameError (uninitialized constant Faraday::Response::Middleware) ```
The code from the documentation shows: ``` lxd = Hyperkit::Client.new(api_endpoint: "https://lxd.example.com", verify_ssl: false) # Create a new container and start it lxd.create_container("test-container", alias: "ubuntu/trusty/amd64") lxd.start_container("test-container") ``` Assuming that we're running...
Hello, have you tested Hyperkit with LXD 3?
Is there any way to connect with just the Unix socket (`/var/lib/lxd/unix.socket`) without having LXD listen to the network? Thanks!