Re: Openstack Keystone version 3.0 support

2016-06-15 Thread Ignasi Barrera
Hi Kai, We indeed plan to add support for Keystone v3, but we have not scheduled it for any release yet. This is something we'd pretty much like to be added as soon as possible, but honestly there are other tasks that are taking most of the committer force now. Having contributors willing to step

Re: Openstack Keystone version 3.0 support

2016-06-15 Thread Kai Liu
Hi Ignasi, Thanks very much for your response. Is there other temporary solution to fix this without efforts to change the source code? On Wed, Jun 15, 2016 at 4:36 AM, Ignasi Barrera wrote: > Hi Kai, > > We indeed plan to add support for Keystone v3, but we have not > scheduled it for any rele

Re: Flavor filter helper

2016-06-15 Thread Ignasi Barrera
Hi Ryan, Apologies for the late reply. Unfortunately there is no such helper. The current jclouds portable model does not have those minimum requirements represented in the Image entity (which would be a nice to have, btw) so there is no portable filter yet. I. El 7 jun. 2016 9:33 p. m., "Ryan S

Re: Flavor filter helper

2016-06-15 Thread Ryan Shoemaker
Thanks, not a problem. Here's what I came up with: ComputeServiceContext computeServiceContext = ...; NovaApi api = computeServiceContext.unwrapApi(NovaApi.class); FlavorApi flavorApi = api.getFlavorApiForZone(...); ImageApi imageApi = api.getImageApi(...); Image i = imageApi.get(...); FluentIt