You cannot post messages because only members can post, and you are not currently a member.
Description:
An email list for fog, the Ruby cloud computing library.
|
|
|
Finding a Vsphere guest's id...
|
| |
The below code was one of the ways I found to get the ID of a guest system in Vsphere. It doesn't seem to work if ARGV[0] has a dash in it.
Ideally, this would find the ID of a guest, then shut it off. (Other methods seems to fail to find the ID, or set the instance_uuid. )
This code has been around for a few months so the bugs behind the initial attempt might have been fixed in Fog…... more »
|
|
Getting 403 errors from AWS using fog 1.11.1 and excon 0.22.0
|
| |
Hello Everyone, I'm setting up some new servers today and some of my existing automation with fog broke. It looks like the recent release of excon 0.22.0 may be causing some issues talking to AWS. Here is an example of the error I'm seeing: ~$ irb -r fog irb(main):001:0> Fog::Compute.new({:provider=>" aws",... more »
|
|
The OpenStack default Quantum endpoint type
|
| |
Hi team. Based on my understanding, 'adminURL' is used as default endpoint type of Quantum( [link]). Is that any reason for that? According to my private cloud provider, adminURL should be used as internal management purpose and we should not... more »
|
|
Memory usage in each loop
|
| |
Hi, I've read some other answers in this group but none seem to apply to my problem. I have a very simple code block where I iterate over files (photos) in a bucket, resizing and saving each to local storage. The problem is that memory usage grows as ruby iterates over the block, to the point where it... more »
|
|
Opt-In for AMI usage via fog?
|
| |
If I try to bootstrap a new AWS instance using a AWS Marketplace AMI an error gets thrown saying your account needs to opt-in to use the ami. (ami-867edcef in us-east-1: Ubuntu Server 12.04 LTS). Is there any way to opt-in via fog? Here's the stacktrace: Fog::Compute::AWS::Error: OptInRequired => In order to use this AWS... more »
|
|
Next fog release?
|
| |
When is the next planned release for fog? I'm specifically interested in the fix for issue 1692<[link]>, which will hopefully fix an issue with knife-ec2<[link]> . Thanks, Jerry
|
|
Delete file without the directory object
|
| |
Hi guys, I've been going through the docs and the documentation I find always gets the directory first and then get the file to be destroyed. I got a simple script running and it works like a champ! The script is like this: *require 'fog' * * * *conn = Fog::Storage.new( * * provider: 'Rackspace',*... more »
|
|
Exception Hierarchy in Fog
|
| |
I am currently making a change to the NotFound exception in the Rackspace provider and I am a little confused about Fog's exception hierarchy. There is a service specific (ie Fog::Storage::Rackspace::NotFo und) NotFound exception being created here: [link]... more »
|
|
Fog::Storage::Rackspace::Direc tories#get consuming 67% of the process time
|
| |
Hi guys, I'm troubleshooting some latency issues in one of our backend services and I'm getting a strange result. Not sure if I'm reading the result correctly, so see the pic of the ruby-prof output. About my environment: * ruby-1.9.3-p194 [ x86_64 ] * fog (1.8.0) * daemons (1.1.8) It seems to me that 67% of the time is being spent in "Directories::get"... more »
|
|
Changing AWS key_pairs?
|
| |
Can AWS EC2 key pairs be changed after an instance is created? Or set to nil? Fog allows the change, buy its not reflected in "console". BTW, the server was stopped. Thanks
|
|
|