RE: assign a port on vm create?

2014-12-05 Thread 'dan rusak'
Zack, First, thanks for trying to help .. and yes, it is the 'provide a port uuid' on boot I am having trouble with from JClouds. Your listed steps are exactly what I did prior to this,( including grazing thru javadocs). I see that this can be done from Openstack/neutron command line but the

RE: assign a port on vm create?

2014-12-05 Thread Zack Shoylev
So this is the problem part as you have pointed out: TemplateOptions to = templateOptions.as(NovaTemplateOptions.class) .generateKeyPair(true) .userData(userData.getBytes()) .autoAssignFloatingIp(true)

Re: Thread being killed

2014-12-05 Thread Peter Halliday
My alarm has nothing to do with the word SEVERE, it’s more due to the fact that my thread dies. I’m just using the blobstore clojure api, I’m not familiar with the async vs sync denotation in coordination with that API. http://www.datastax.com/ PETER HALLIDAY OpsCenter | Sr Software Engineer

RE: assign a port on vm create?

2014-12-05 Thread Ignasi Barrera
If the option is available in the NovaTemplateOptions you don't need to manually create the options object. It is just a matter of order. Just call the specific NovaTemplateOptions methods after the as call. Calling methods from the superclass (TemplateOptions) will return that superclass, where