Re: [openstack-dev] [nova] python-novaclient region setting

2016-02-25 Thread Xav Paice
On 24 February 2016 at 22:18, Andrey Kurilin wrote: > Hi! > > >didn't work for me in this particular case because of a bug in novaclient > > Can you tell more about bug in novaclient or share a bug report? > > Sure -

Re: [openstack-dev] [nova] python-novaclient region setting

2016-02-24 Thread Jamie Lennox
On 23 February 2016 at 01:02, Monty Taylor wrote: > On 02/21/2016 11:40 PM, Andrey Kurilin wrote: > >> Hi! >> `novaclient.client.Client` entry-point supports almost the same >> arguments as `novaclient.v2.client.Client`. The difference is only in >> api_version, so you can

Re: [openstack-dev] [nova] python-novaclient region setting

2016-02-24 Thread Andrey Kurilin
Hi! >didn't work for me in this particular case because of a bug in novaclient Can you tell more about bug in novaclient or share a bug report? On Wed, Feb 24, 2016 at 8:42 AM, Xav Paice wrote: > fwiw, the second part of Monty's message is in the docs, sans region - it >

Re: [openstack-dev] [nova] python-novaclient region setting

2016-02-23 Thread Xav Paice
fwiw, the second part of Monty's message is in the docs, sans region - it would be a fairly swift change to add that and I'll probably submit a gerrit for it soon. Regards os_client_config, http://docs.openstack.org/developer/os-client-config/ is great. Unfortunately it didn't work for me in this

Re: [openstack-dev] [nova] python-novaclient region setting

2016-02-23 Thread Matt Riedemann
On 2/22/2016 8:02 AM, Monty Taylor wrote: On 02/21/2016 11:40 PM, Andrey Kurilin wrote: Hi! `novaclient.client.Client` entry-point supports almost the same arguments as `novaclient.v2.client.Client`. The difference is only in api_version, so you can set up region via

Re: [openstack-dev] [nova] python-novaclient region setting

2016-02-22 Thread Xav Paice
That's just what I was after - thanks for that! On 23 February 2016 at 03:02, Monty Taylor wrote: > On 02/21/2016 11:40 PM, Andrey Kurilin wrote: > >> Hi! >> `novaclient.client.Client` entry-point supports almost the same >> arguments as `novaclient.v2.client.Client`. The

Re: [openstack-dev] [nova] python-novaclient region setting

2016-02-22 Thread Monty Taylor
On 02/21/2016 11:40 PM, Andrey Kurilin wrote: Hi! `novaclient.client.Client` entry-point supports almost the same arguments as `novaclient.v2.client.Client`. The difference is only in api_version, so you can set up region via `novaclient.client.Client` in the same way as

Re: [openstack-dev] [nova] python-novaclient region setting

2016-02-21 Thread Andrey Kurilin
Hi! `novaclient.client.Client` entry-point supports almost the same arguments as `novaclient.v2.client.Client`. The difference is only in api_version, so you can set up region via `novaclient.client.Client` in the same way as `novaclient.v2.client.Client`. On Mon, Feb 22, 2016 at 6:11 AM, Xav