fog-openstack icon indicating copy to clipboard operation
fog-openstack copied to clipboard

Fog for OpenStack Platform

Results 107 fog-openstack issues
Sort by recently updated
recently updated
newest added
trafficstars

My `image` endpoint is configured as `http://glance.local:9292/` without an API version number, so `Fog::Image::OpenStack` uses `Fog::OpenStack.get_supported_version` to figure out the versioned API base URL by querying `GET /` on the...

There is no support for the "nova-manage network create" commands in the fog library. Nova-manage has been deprecated as of Folsom (https://wiki.openstack.org/wiki/NovaManage) but it has not been removed from the...

In [this doc](https://github.com/fog/fog/blob/master/lib/fog/openstack/docs/storage.md), it was mentioned that create method support a :metadata key. However, the create method does not really pass the metadata into headers when the put_container method is...

`attach_volume` adds an entry to `self.data[:volumes][volume_id]`, but `detach_volume` attempts to find it via `self.data[:volumes][attachment_id]`. Instead, it should find the volume in `self.data[:volumes]` that has an attachment with the given `attachment_id`:...

I'm hitting a performance issue with Fog::Storage::Openstask which authenticates to the remote server as soon as it's initialized. The `auth_token` is indeed required when interacting with the storage, yet I...

It seems that Fog ignores the value of the availability_zone parameter when creating OpenStack volumes. In https://github.com/fog/fog/blob/master/lib/fog/openstack/models/compute/volume.rb line 28 I would expect this argument to be passed to the create_volume...

server.public_ip_address and server.private_ip_address fail when executed against an Openstack implementation without the floating-ip extension loaded. I'm not sure how common this is, but Rackspace does it. While fog has a...

It looks like Identity.get_user_by_name returns the full list of users currently and tests fail against a real installation. I believe @drbrain noted this first (see b430ec6a20eb1216130df5024e32d18c4a60c3d6), so the question is,...

[Rubiojr's gist](https://gist.github.com/2627365) is the first Google hit for "ruby fog openstack". Notice how the parameters for `Fog::Compute.new` there are mostly direct equivalents of the `OS_*` environment variables of the [Unified...

Ensure all API features are present in the gem, and exposed as model methods where appropriate.

enhancement