Re: [openstack-dev] [python-novaclient][nova] future of --os-compute-api-version option and whole api versioning

2015-02-05 Thread Christopher Yeoh
On Thu, Feb 5, 2015 at 11:37 AM, Andrey Kurilin wrote: > First results is https://review.openstack.org/#/c/152569/ > > > - if os-compute-api-version is not supplied don't send any header at all > > - it is probably worth doing a bit version parsing to see if it makes > sense eg of format: > >

Re: [openstack-dev] [python-novaclient][nova] future of --os-compute-api-version option and whole api versioning

2015-02-04 Thread Andrey Kurilin
First results is https://review.openstack.org/#/c/152569/ > - if os-compute-api-version is not supplied don't send any header at all > - it is probably worth doing a bit version parsing to see if it makes sense eg of format: > r"^([1-9]\d*)\.([1-9]\d*|0)$" or latest implemented >- handle

Re: [openstack-dev] [python-novaclient][nova] future of --os-compute-api-version option and whole api versioning

2015-02-02 Thread Andrey Kurilin
Thanks for the summary, I'll try to send first patch(maybe WIP) in few days. On Mon, Feb 2, 2015 at 1:43 PM, Christopher Yeoh wrote: > > > On Sat, Jan 31, 2015 at 4:09 AM, Andrey Kurilin > wrote: > >> Thanks for the answer. Can I help with implementation of novaclient part? >> > > Sure! Do you

Re: [openstack-dev] [python-novaclient][nova] future of --os-compute-api-version option and whole api versioning

2015-02-02 Thread Christopher Yeoh
On Sat, Jan 31, 2015 at 4:09 AM, Andrey Kurilin wrote: > Thanks for the answer. Can I help with implementation of novaclient part? > Sure! Do you think its something you can get proposed into Gerrit by the end of the week or very soon after? Its the sort of timeframe we're looking for to get mic

Re: [openstack-dev] [python-novaclient][nova] future of --os-compute-api-version option and whole api versioning

2015-01-30 Thread Andrey Kurilin
Thanks for the answer. Can I help with implementation of novaclient part? On Wed, Jan 28, 2015 at 11:50 AM, Christopher Yeoh wrote: > On Fri, 23 Jan 2015 15:51:54 +0200 > Andrey Kurilin wrote: > > > Hi everyone! > > After removing nova V3 API from novaclient[1], implementation of v1.1 > > clien

Re: [openstack-dev] [python-novaclient][nova] future of --os-compute-api-version option and whole api versioning

2015-01-28 Thread Christopher Yeoh
On Fri, 23 Jan 2015 15:51:54 +0200 Andrey Kurilin wrote: > Hi everyone! > After removing nova V3 API from novaclient[1], implementation of v1.1 > client is used for v1.1, v2 and v3 [2]. > Since we moving to micro versions, I wonder, do we need such > mechanism of choosing api version(os-compute-a

[openstack-dev] [python-novaclient][nova] future of --os-compute-api-version option and whole api versioning

2015-01-23 Thread Andrey Kurilin
Hi everyone! After removing nova V3 API from novaclient[1], implementation of v1.1 client is used for v1.1, v2 and v3 [2]. Since we moving to micro versions, I wonder, do we need such mechanism of choosing api version(os-compute-api-version) or we can simply remove it, like in proposed change - [3]