cloudbridge icon indicating copy to clipboard operation
cloudbridge copied to clipboard

A consistent interface to multiple IaaS clouds; in Python.

Results 44 cloudbridge issues
Sort by recently updated
recently updated
newest added

We are currently using a dummy router to check for FIP connectivity. This particularly comes up when trying to get a gateway from a network eg: `list(net.gateways)[0]`. This method won't...

![image](https://user-images.githubusercontent.com/14061824/152055170-0cd5ac02-a358-45cb-a08a-0054823770be.png) Creates docker images with tags: ``` 3.9-aws 3.9-azure 3.9-full 3.9-gcp 3.9-openstack dev-3.9-aws dev-3.9-azure dev-3.9-full dev-3.9-gcp dev-3.9-openstack ```

This adds support for middleware in factory, which then gets inherited by any provider object created by this factory. Three options to add middleware from factory: 1) Direct middleware add...

in progress

Some methods like stop_vm and restart_vm, block till the operation is complete. It would be better if they were non-blocking and returned an object that can be waited upon or...

enhancement

There's currently no way to get the number of GPUs per instance type or any related information. see: https://github.com/CloudVE/cloudbridge/issues/153

enhancement
help wanted
good first issue
maybe

Right now, the `find` method in `AzureKeyPairService` always returns a list with only one item, essentially duplicating `get` and wrapping it in a singleton list (name and id are the...

good first issue

At least in OS, we're leaving leftover ports behind when detaching IPs and deleting instances. On our Jetstream allocation we had almost 30 ports (~1/3 of our quota) in the...

For GCP & AWS its relatively easy to patch the instance.create functions to support using internal IPs for VMs (I'll post some diffs later) but once you do this the...

- [ ] GCE Instances currently get an automatic public IP. Ideally they'd only get a Private IP - [ ] Block internet access until routing is done properly through...

maybe

I'm trying to launch VMs across AWS, GCP and Azure and have noted the following: - the AWS VM create function returns within a second and then I can wait...