fog-openstack
fog-openstack copied to clipboard
Fog for OpenStack Platform
Bosh Openstack cpi uses a POST request for instance creation, with body content `user_data` base64 encoded row containing newlines `\n` every 60 characters: ``` body: { "server": { "flavorRef": "s3.small.1",...
This basically replaces all `URI.encode` occurences with `CGI.escape` As the maintainer of [activestorage-openstack](https://github.com/chaadow/activestorage-openstack). this has made my [test suite](https://github.com/chaadow/activestorage-openstack/actions/runs/3211049861) pass both on ruby `3.0` and `3.1` so the change should...
When talking to keystone v3, you need to pass in `:openstack_user_domain_name`. It is used, https://github.com/fog/fog-openstack/blob/master/lib/fog/openstack/auth/token/v3.rb#L103 And passing it works, albeit with a warning [fog][WARNING] Unrecognized arguments: openstack_user_domain_name
It seems that migrating CI from Travis to GitHub Actions was completed at #521. This PR removes `.travis.yml` and replaces the CI status badge. And I also removed Gemnasium badge...
Our Code Climate score isn't great. We can probably promote some Cs to Bs and Fs to Es if we fix all the style contraventions listed. Some of those F...
Trying to fix this error (https://github.com/fog/fog-openstack/issues/535) by changing the input to_s before trying to match it with the regex
I have a rather fresh install of activestorage-openstack, which seems to build upon fog-openstack. I've tried to upload a test jpg file to my Infomaniak s3 comp object storage, but...