Re: [Openstack-operators] [User-committee] [publicClouds-wg] Public Cloud Working Group

2016-11-25 Thread matt Jarvis
Absolutely agree with your comments. There's an initial process and milestones we will have to go through where we start to identify what those outputs can be. We'll define those milestones as part of the first couple of meetings. On Fri, Nov 25, 2016 at 4:13 AM, David F Flanders wrote: > +1 for

Re: [Openstack-operators] Using novaclient, glanceclient, etc, from python

2016-11-25 Thread George Shuklin
No. I've tried to use openstacksdk to set up properties for image and there has been a zero information how to do this, and manual attempt to discover 'how to', I found it is broken. Bugreport is already 7 month old and there is no motion at all. python-openstacksdk is broken and unusable.

Re: [Openstack-operators] Using novaclient, glanceclient, etc, from python

2016-11-25 Thread George Shuklin
shade fails if see too duplicate images in account. o = shade.OpenStackCloud(**creds) o.create_image(name=’killme’, filename=’/tmp/random_junk’, disk_format=’qcow2', container_format=’bare’, wait=True) |Traceback (most recent call last): ... File "/usr/lib/python2.7/dist-packages/shade/opensta

Re: [Openstack-operators] Using novaclient, glanceclient, etc, from python

2016-11-25 Thread Ricardo Carrillo Cruz
That is expected. The shade calls accept name_or_id param for a lot of methods for convenience. In your case, as there are multiple images with the same name you should pass the ID of the image you want to use, otherwise shade cannot guess it. 2016-11-25 11:42 GMT+01:00 George Shuklin : > shade

[Openstack-operators] [publiccloud-wg] First meeting Wednesday 7th December 1400 UTC #openstack-meeting-3

2016-11-25 Thread Matt Jarvis
As per the results of the recent Doodle poll, the first meeting of the Public Cloud Working Group will be held on Wednesday 7th December at 1400 UTC in #openstack-meeting-3, and bi-weekly after that. If you're unfamiliar with IRC meetings, you can find some documentation on getting started at http

[Openstack-operators] Fwd: [rdo-list] Getting ready for RDO on Centos 7.3

2016-11-25 Thread David Moreau Simard
Hi openstack-operators, With the impending release of CentOS 7.3, derived out of RHEL 7.3, this can surely be of interest whether you're running from source or from RDO packages. You can see the full thread on rdo-list here [1]. [1]: https://www.redhat.com/archives/rdo-list/2016-November/msg0011

Re: [Openstack-operators] Using novaclient, glanceclient, etc, from python

2016-11-25 Thread George Shuklin
Em... Sorry, I'm trying to create_image. And it traces on duplicate images during creation process, not while passing image name to some 'create instance' or 'delete image' functions.\ Or you want to say I need to pass uuid for new image in image_create() function? Never hear about such thing.

Re: [Openstack-operators] Using novaclient, glanceclient, etc, from python

2016-11-25 Thread Mathieu Gagné
This change allows you to upload duplicate images: https://review.openstack.org/#/c/349710/ Use the allow_duplicates=True argument to bypass the name duplication check. -- Mathieu On Fri, Nov 25, 2016 at 3:15 PM, George Shuklin wrote: > Em... Sorry, I'm trying to create_image. And it traces on