[Openstack-operators] ACTION Needed - All WGs Chairs

2016-07-07 Thread Edgar Magana
Dear Working Groups Chairs,

As you know WGs present an opportunity to consolidate and increase the 
Community around OpenStack from the User and Operator perspective. One of the 
goals of the User Committee is to help WGs to have the resources needed to 
achieve their specific goals and exactly as the TC validates and accepts 
development projects the UC needs to validate and accept WGs before they be 
granted with resources and support from UC and the OpenStack Foundation. 
(https://wiki.openstack.org/wiki/Procedure_for_Creating_a_New_Working_Group)

In order to validate the current work and progress of the existing WGs under: 
https://wiki.openstack.org/wiki/Governance/Foundation/UserCommittee#Working_Groups
The UC would like to have all chairs to reply to this thread with the status of 
the WG and their plans for the Barcelona summit. This is also an opportunity to 
have a space allocated to get together and discuss about work and activities. 
This is only for existing WGs not for new ones. If we do not hear from WG 
Chairs, we will assume that those WGs are no longer active and therefore they 
will be removed from UC documentation.

Please, reach out to us with a short report of the activities (wikis, 
etherpads, repos, etc).

Thanks,

Edgar, Shilla and Jon
UC Members.

___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] Please review: OpenStack Personas Document

2016-07-07 Thread Silence Dogood
Vish the virtual machine barista?

On Thu, Jul 7, 2016 at 4:23 PM, Kruithof Jr, Pieter <
pieter.kruithof...@intel.com> wrote:

> Operators,
>
> If you have a few moments, please review the following:
>
> https://review.openstack.org/#/c/326662/14
>
> The intent of the document is to generate a group of personas
> that represent the different users of OpenStack.  We’re currently working
> on Alan the App Developer, Carlos Cloud Operator and Doug the Domain
> Operator.
>
> The intent is to help build consistency across the projects by landing on
> a standard definition of our users.  It would be really helpful to get you
> feedback for all of you.
>
> Thanks,
>
> Piet
>
> --
> Piet Kruithof
> Sr User Experience Architect, Intel OTC
> PTL, OpenStack UX Project
>
> Mobile: 512 576-2844
> IRC: piet
>
> ___
> OpenStack-operators mailing list
> OpenStack-operators@lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators
>
>
___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


[Openstack-operators] Please review: OpenStack Personas Document

2016-07-07 Thread Kruithof Jr, Pieter
Operators,

If you have a few moments, please review the following:

https://review.openstack.org/#/c/326662/14

The intent of the document is to generate a group of personas that represent 
the different users of OpenStack.  We’re currently working on Alan the App 
Developer, Carlos Cloud Operator and Doug the Domain Operator.

The intent is to help build consistency across the projects by landing on a 
standard definition of our users.  It would be really helpful to get you 
feedback for all of you.

Thanks,

Piet

--
Piet Kruithof
Sr User Experience Architect, Intel OTC
PTL, OpenStack UX Project

Mobile: 512 576-2844
IRC: piet
___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] Internal integration (best?) practices

2016-07-07 Thread Joshua Harlow

Cool, so we aren't alone here (I knew it!)

Has the DNS generation ever been a problem for you, as its out of band 
and can have problems like if it ever stops working, the DNS name may be 
reported in the instance, but that hostname may not actually be in DNS 
and thus this equals a confused user?


Same goes with cleanup as well, when it's out of band it's hard to 
handle the failure of DNS to actually perform the delete and therefore 
it makes it hard/impossible to stop the instance from being deleted if 
this happens (and if a DNS deletion failure occurs and the user tries to 
reuse the same hostname in a short period of time before that problem is 
fixed then you get a doubly confused user).


It almost makes me desire for a more customizable boot/delete-workflow 
where these kinds of additional actions can be tied into the larger 
workflow for those that want to do them (in a way there would be a 
standard workflow that would be the accepted openstack way, but it would 
be relatively easy to add a new  in that to call out to DNS or to 
do ...).


Ben Morrice wrote:

Hello,

We do something similar. Our requirements are:

* VM is registered in CMDB (foreman as we are a puppet shop)
* VM is registered in DNS
* Cleanup of the above is performed on VM termination

Our Horizon is customised, so that when a VM is spawned the user can
associate it to a foreman hostgroup and environment. If the user doesn't
select a hostgroup/environment the record is still created in foreman as
'unmanaged'.
If the record is not able to be created in Foreman, Horizon will fail at
this point and the VM will not be spawned.

We also have a bit of python that listens and reacts to
compute.instance.create.end and compute.instance.delete.end messages in
the notification queue.

For creations we do a bit of sanity checking and create A records based
off the VM name
For deletions we remove the DNS A records, remove from Foreman as well
as checking/removing from other systems that the VM may have been a be a
member of (example: GPFS cluster member invoked through puppet).

We decided to react on compute.instance.create.end messages for DNS
creations as we wanted to be able to use HEAT and automatically
generated hostnames.

I'm not sure what the 'best practices' are, however this setup has been
working nicely for us for the past 2 years.

Kind regards,

Ben Morrice

__
Ben Morrice | e: ben.morr...@epfl.ch | t: +41-21-693-9670
EPFL ENT CBS BBP
Biotech Campus
Chemin des Mines 9
1202 Geneva
Switzerland

On 06/07/16 20:13, Joshua Harlow wrote:

Hi folks (operators and devs),

I was digging into some of godaddy code yesterday/everyday and it got
me thinking about how other operators are handling customized internal
integrations and what some of the common patterns are for how these
integrations are typically performed (overall it doesn't feel like
there are that many patterns that people can be doing in that many
different ways). It got me thinking that there really isn't a best
practices document that I know for these types of common integrations
(perhaps this can be the start of one?) that operators and developers
can provide feedback on (because perhaps there is a new or to-be new
API that replaces an older style of integration).

This hopefully falls into the pattern (and/or is similar to) that is
described in:

https://specs.openstack.org/openstack/nova-specs/specs/newton/approved/api-no-more-extensions.html#alternatives-for-extension-owners


'''
Please bring forward the conversation to the wider community anyway.
There are a lot of OpenStack deploys, and issues that you think are
specific to your environment may not be. And in conversation with the
upstream operator and developer communities we could probably come up
with a generic facility that supports your use.
'''

So let me describe some of the internal integrations we've had to do
and see if these sound familiar to what others have had to do and it'd
be nice to share how those integrations were performed (or even if the
integration that was done is similar or done in a different manner,
that's cool to):

(1) Requirement we have is to register virtual machines booted with a
in-house dns solution and to also delete dns names registered on
deletion being triggered.

The steps this will do is on reception of a
'compute.instance.create.end' event being received (the program that
does this listens on the notifications queue of nova) logic will
proceed that will (direct comment from routine here):

'Creates A and PTR records based off of the instance's hostname and
fixed ip.'

This goes about and has further logic to realize this statement (its
error robustness is a different discussion, but I digress) and the
'compute.instance.delete.end' event does the reverse:

'Removes instance's DNS entries. Will remove A and PTR records.'

Now sidestepping the choice of using the notifications queue (and
having a consumer 

Re: [Openstack-operators] Kilo ->-> Mitaka anyone have notes :)

2016-07-07 Thread Jesse Keating
That's strange, this very command has worked for every environment we've tried, Kilo -> Mitaka. No errors, successful appearing migration, continued Nova operation after the fact.
 
Maybe I'm missing something. I realize it's untested, but the sync command does not fail.
-jlk
 
 
- Original message -From: Andrew Laski To: openstack-operators@lists.openstack.orgCc:Subject: Re: [Openstack-operators] Kilo ->-> Mitaka anyone have notes :)Date: Mon, Jun 27, 2016 5:35 AM 
On Sun, Jun 26, 2016, at 07:58 PM, Sam Morrison wrote:> I’ve done kilo -> mitaka with Keystone and all worked fine. Nothing> special I needed to do.>> If you’re wanting to do live upgrades with nova you can’t skip a version> from my understanding.Correct. Not without doing the work yourself to make it possible, andrealizing that it's untested/unsupported and likely will bring outgremlins.In order to make db migrations less painful, i.e. faster, Nova moved toa system where only schema changes occur in the sqlalchemy-migratemigrations and all data is migrated by another nova-manage command whichcan be run while the system is in use. But the side effect of this isthat the data migration needs to take place for each release, and thereare checks in place to ensure this happens. Unless you have an emptydatabase "nova-manage db sync" won't even complete successfully forkilo->mitaka since there's a check in place to ensure the liberty datamigration took place.>> Sam>>> > On 25 Jun 2016, at 4:16 AM, Jonathan Proulx  wrote:> >> > Hi All,> >> > I about to start testing for our Kilo->Mitaka migration.> >> > I seem to recall many (well a few at least) people who were looking to> > do a direct Kilo to Mitaka upgrade (skipping Liberty).> >> > Blue Box apparently just did and I read Stefano's blog[1] about it,> > and while it gives me hope my plan is possible it's not realy a> > technical piece.> >> > I'm on my 7th version of OpenStack for this cloud now so not my first> > redeo as they say, but other than read Liberty and Mitaka release> > notes carefully and test like crazy wonder if anyone has seen specific> > issues or has specific advice for skiping a step here?> >> > Thanks,> > -Jon> >> > --> > [1] https://www.dreamhost.com/blog/2016/06/21/dreamcompute-goes-m-for-mitaka-without-unleashing-the-dragons/> >> > ___> > OpenStack-operators mailing list> > OpenStack-operators@lists.openstack.org> > http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators>>> ___> OpenStack-operators mailing list> OpenStack-operators@lists.openstack.org> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators___OpenStack-operators mailing listOpenStack-operators@lists.openstack.orghttp://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators
 


___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] Next Ops Midcycle NYC August 25-26

2016-07-07 Thread Matt Fischer
That's my comment I spoke to Mark V about it this morning and he's working
on it already, so you may want to coordinate with him.

On Thu, Jul 7, 2016 at 11:20 AM, Amrith Kumar  wrote:

> I see a comment in https://etherpad.openstack.org/p/NYC-ops-meetup about
> “OpenStack East Discount?”.
>
>
>
> If someone wants to pursue this, please let me know; I’ll get you in touch
> with folks who are doing the registration for OpenStack East and you’ll be
> able to get (maybe) a joint registration thing going to get the discount.
>
>
>
> -amrith
>
>
>
> *From:* Chris Morgan [mailto:mihali...@gmail.com]
> *Sent:* Wednesday, July 06, 2016 4:08 PM
> *To:* Saverio Proto 
> *Cc:* openstack-operators@lists.openstack.org
> *Subject:* Re: [Openstack-operators] Next Ops Midcycle NYC August 25-26
>
>
>
> For the purposes of the mid-cycle meeting this august, I can be the point
> of contact:
>
>
>
> If anyone needs my full contact info, just email me here and I will reply
> with full details. Sorry for the delay with this.
>
>
>
> Chris
>
>
>
> On Fri, Jun 24, 2016 at 10:42 PM, Chris Morgan 
> wrote:
>
> Hi there
>   Sorry for the delay. I am hoping to see our organizer asap Monday when
> she's back from a trip and to get an answer for this. I don't know who the
> official organizer is but I would think we could do this to just be a
> credible org that can confirm details like you mention.
>
> Chris (Bloomberg)
>
> Sent from my iPhone
>
>
> > On Jun  23, 2016, at 4:14 PM, Saverio Proto  wrote:
> >
> > Hello there :)
> >
> > is anyone from the openstack foundation or from bloomberg that can
> > help out with this ?
> >
> > I share this for anyone that needs visa.
> >
> > for Austin we had something like this:
> > https://www.openstack.org/summit/austin-2016/austin-and-travel/
> > https://openstackfoundation.formstack.com/forms/visa_form_austin_summit
> >
> > anyone that needs to apply for Visa will need a 'US point of contact
> > information'.
> >
> > Basically, if the organizer of the Ops Midcycle is officially the
> > openstack foundation or bloomberg, I need to enter in my visa
> > application the following info:
> >
> > Organization name
> > Address in the US
> > Phone number
> > Email
> >
> > It must be a phone number and a email where in case there is a check,
> > somebody can tell "yes of course, this guy exist and is coming to the
> > conference" :)
> >
> > How we sort this out ?
> >
> > thank you
> >
> > Saverio
> >
> > ___
> > OpenStack-operators mailing list
> > OpenStack-operators@lists.openstack.org
> > http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators
>
>
>
>
>
> --
>
> Chris Morgan 
>
> ___
> OpenStack-operators mailing list
> OpenStack-operators@lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators
>
>
___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] Next Ops Midcycle NYC August 25-26

2016-07-07 Thread Amrith Kumar
I see a comment in https://etherpad.openstack.org/p/NYC-ops-meetup about 
“OpenStack East Discount?”.

If someone wants to pursue this, please let me know; I’ll get you in touch with 
folks who are doing the registration for OpenStack East and you’ll be able to 
get (maybe) a joint registration thing going to get the discount.

-amrith

From: Chris Morgan [mailto:mihali...@gmail.com]
Sent: Wednesday, July 06, 2016 4:08 PM
To: Saverio Proto 
Cc: openstack-operators@lists.openstack.org
Subject: Re: [Openstack-operators] Next Ops Midcycle NYC August 25-26

For the purposes of the mid-cycle meeting this august, I can be the point of 
contact:

If anyone needs my full contact info, just email me here and I will reply with 
full details. Sorry for the delay with this.

Chris

On Fri, Jun 24, 2016 at 10:42 PM, Chris Morgan 
> wrote:
Hi there
  Sorry for the delay. I am hoping to see our organizer asap Monday when she's 
back from a trip and to get an answer for this. I don't know who the official 
organizer is but I would think we could do this to just be a credible org that 
can confirm details like you mention.

Chris (Bloomberg)

Sent from my iPhone

> On Jun  23, 2016, at 4:14 PM, Saverio Proto 
> > wrote:
>
> Hello there :)
>
> is anyone from the openstack foundation or from bloomberg that can
> help out with this ?
>
> I share this for anyone that needs visa.
>
> for Austin we had something like this:
> https://www.openstack.org/summit/austin-2016/austin-and-travel/
> https://openstackfoundation.formstack.com/forms/visa_form_austin_summit
>
> anyone that needs to apply for Visa will need a 'US point of contact
> information'.
>
> Basically, if the organizer of the Ops Midcycle is officially the
> openstack foundation or bloomberg, I need to enter in my visa
> application the following info:
>
> Organization name
> Address in the US
> Phone number
> Email
>
> It must be a phone number and a email where in case there is a check,
> somebody can tell "yes of course, this guy exist and is coming to the
> conference" :)
>
> How we sort this out ?
>
> thank you
>
> Saverio
>
> ___
> OpenStack-operators mailing list
> OpenStack-operators@lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators



--
Chris Morgan >
___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] Next Ops Midcycle NYC August 25-26

2016-07-07 Thread Anita Kuno
On 07/07/2016 12:43 PM, Shilla Saebi wrote:
> I don't think it's setup yet for the ops mid cycle.

Is there any sense of urgency on this? If not, could there be, please?

This is a significant event in terms of expense (New York accommodations
are very expensive) and logistics (New York accommodations are very hard
to get at any price).

Letting folks register will really help everyone concerned with the
travel logistics involved. Figuring out travel on limited time scales
(less that 2 months now) is challenging anywhere in the world, New York
much more so.

My thanks,
Anita.

> On Thu, Jul 7, 2016 at 12:25 PM, Edgar Magana 
> wrote:
> 
>> Folks,
>> Do we have an eventbrite already set up?
>>
>> Thanks,
>>
>> Edgar
>>
>> On 6/23/16, 1:14 PM, "Saverio Proto"  wrote:
>>
>> Hello there :)
>>
>> is anyone from the openstack foundation or from bloomberg that can
>> help out with this ?
>>
>> I share this for anyone that needs visa.
>>
>> for Austin we had something like this:
>>
>> https://urldefense.proofpoint.com/v2/url?u=https-3A__www.openstack.org_summit_austin-2D2016_austin-2Dand-2Dtravel_=CwICAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=Sl397xp9_uCFp4UYQdcPuwBxeFn2lhzgmuF7fVt1pXE=wf9aH1oLv0jEU-Xw0tQijtKexSOVHWxi6gfy8iZn36g=
>>
>> https://urldefense.proofpoint.com/v2/url?u=https-3A__openstackfoundation.formstack.com_forms_visa-5Fform-5Faustin-5Fsummit=CwICAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=Sl397xp9_uCFp4UYQdcPuwBxeFn2lhzgmuF7fVt1pXE=n4Mtj1sOz0froNvkbC4f-w7qd-lF26MJ1aFZWtSi_f8=
>>
>> anyone that needs to apply for Visa will need a 'US point of contact
>> information'.
>>
>> Basically, if the organizer of the Ops Midcycle is officially the
>> openstack foundation or bloomberg, I need to enter in my visa
>> application the following info:
>>
>> Organization name
>> Address in the US
>> Phone number
>> Email
>>
>> It must be a phone number and a email where in case there is a check,
>> somebody can tell "yes of course, this guy exist and is coming to the
>> conference" :)
>>
>> How we sort this out ?
>>
>> thank you
>>
>> Saverio
>>
>> ___
>> OpenStack-operators mailing list
>> OpenStack-operators@lists.openstack.org
>>
>> https://urldefense.proofpoint.com/v2/url?u=http-3A__lists.openstack.org_cgi-2Dbin_mailman_listinfo_openstack-2Doperators=CwICAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=Sl397xp9_uCFp4UYQdcPuwBxeFn2lhzgmuF7fVt1pXE=hJ_UMzKTYvPT5NCIcRrq6bc1D7JZx9FZl9nzLqla8SM=
>>
>>
>> ___
>> OpenStack-operators mailing list
>> OpenStack-operators@lists.openstack.org
>> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators
>>
> 
> 
> 
> ___
> OpenStack-operators mailing list
> OpenStack-operators@lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators
> 


___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] Next Ops Midcycle NYC August 25-26

2016-07-07 Thread Edgar Magana
Thank you Allison.

Erin,

Basically, the meet-up is very close and we should speed up the Eventbrite 
creation. I hope you can help us and start the registration ASAP. A huge 
disclaimer,  I did not attend the team meeting last time so, they may have 
started this process and I am just messing things around.

Edgar

On 7/7/16, 9:40 AM, "Allison Price"  wrote:

Hi Edvar and Saverio, 

I wanted to bring my colleague, Erin Disney, into this thread as she will be 
one of the points of contact from the Foundation for the Ops Midcycle in New 
York. She will be able to help answer the questions around the Eventbrite 
registration and visas. 

Cheers,
Allison


Allison Price
OpenStack Marketing
alli...@openstack.org


> On Jul 7, 2016, at 11:25 AM, Edgar Magana  wrote:
> 
> Folks,
> Do we have an eventbrite already set up?
> 
> Thanks,
> 
> Edgar
> 
> On 6/23/16, 1:14 PM, "Saverio Proto"  wrote:
> 
> Hello there :)
> 
> is anyone from the openstack foundation or from bloomberg that can
> help out with this ?
> 
> I share this for anyone that needs visa.
> 
> for Austin we had something like this:
> https://urldefense.proofpoint.com/v2/url?u=https-3A__www.openstack.org_summit_austin-2D2016_austin-2Dand-2Dtravel_=CwICAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=Sl397xp9_uCFp4UYQdcPuwBxeFn2lhzgmuF7fVt1pXE=wf9aH1oLv0jEU-Xw0tQijtKexSOVHWxi6gfy8iZn36g=
>  
> https://urldefense.proofpoint.com/v2/url?u=https-3A__openstackfoundation.formstack.com_forms_visa-5Fform-5Faustin-5Fsummit=CwICAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=Sl397xp9_uCFp4UYQdcPuwBxeFn2lhzgmuF7fVt1pXE=n4Mtj1sOz0froNvkbC4f-w7qd-lF26MJ1aFZWtSi_f8=
>  
> 
> anyone that needs to apply for Visa will need a 'US point of contact
> information'.
> 
> Basically, if the organizer of the Ops Midcycle is officially the
> openstack foundation or bloomberg, I need to enter in my visa
> application the following info:
> 
> Organization name
> Address in the US
> Phone number
> Email
> 
> It must be a phone number and a email where in case there is a check,
> somebody can tell "yes of course, this guy exist and is coming to the
> conference" :)
> 
> How we sort this out ?
> 
> thank you
> 
> Saverio
> 
> ___
> OpenStack-operators mailing list
> OpenStack-operators@lists.openstack.org
> https://urldefense.proofpoint.com/v2/url?u=http-3A__lists.openstack.org_cgi-2Dbin_mailman_listinfo_openstack-2Doperators=CwICAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=Sl397xp9_uCFp4UYQdcPuwBxeFn2lhzgmuF7fVt1pXE=hJ_UMzKTYvPT5NCIcRrq6bc1D7JZx9FZl9nzLqla8SM=
>  
> 
> 
> ___
> OpenStack-operators mailing list
> OpenStack-operators@lists.openstack.org
> https://urldefense.proofpoint.com/v2/url?u=http-3A__lists.openstack.org_cgi-2Dbin_mailman_listinfo_openstack-2Doperators=CwIFAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=lNuCpnzMaT-05LKn_FFNp0L8JET-rRkt-GlmvCwBXSs=YaNpLJXLTb5T6v9IAsbzYQuNa9iN9bJ4_eeRT5ZbVjk=
>  



___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] Next Ops Midcycle NYC August 25-26

2016-07-07 Thread Shilla Saebi
I don't think it's setup yet for the ops mid cycle.

On Thu, Jul 7, 2016 at 12:25 PM, Edgar Magana 
wrote:

> Folks,
> Do we have an eventbrite already set up?
>
> Thanks,
>
> Edgar
>
> On 6/23/16, 1:14 PM, "Saverio Proto"  wrote:
>
> Hello there :)
>
> is anyone from the openstack foundation or from bloomberg that can
> help out with this ?
>
> I share this for anyone that needs visa.
>
> for Austin we had something like this:
>
> https://urldefense.proofpoint.com/v2/url?u=https-3A__www.openstack.org_summit_austin-2D2016_austin-2Dand-2Dtravel_=CwICAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=Sl397xp9_uCFp4UYQdcPuwBxeFn2lhzgmuF7fVt1pXE=wf9aH1oLv0jEU-Xw0tQijtKexSOVHWxi6gfy8iZn36g=
>
> https://urldefense.proofpoint.com/v2/url?u=https-3A__openstackfoundation.formstack.com_forms_visa-5Fform-5Faustin-5Fsummit=CwICAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=Sl397xp9_uCFp4UYQdcPuwBxeFn2lhzgmuF7fVt1pXE=n4Mtj1sOz0froNvkbC4f-w7qd-lF26MJ1aFZWtSi_f8=
>
> anyone that needs to apply for Visa will need a 'US point of contact
> information'.
>
> Basically, if the organizer of the Ops Midcycle is officially the
> openstack foundation or bloomberg, I need to enter in my visa
> application the following info:
>
> Organization name
> Address in the US
> Phone number
> Email
>
> It must be a phone number and a email where in case there is a check,
> somebody can tell "yes of course, this guy exist and is coming to the
> conference" :)
>
> How we sort this out ?
>
> thank you
>
> Saverio
>
> ___
> OpenStack-operators mailing list
> OpenStack-operators@lists.openstack.org
>
> https://urldefense.proofpoint.com/v2/url?u=http-3A__lists.openstack.org_cgi-2Dbin_mailman_listinfo_openstack-2Doperators=CwICAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=Sl397xp9_uCFp4UYQdcPuwBxeFn2lhzgmuF7fVt1pXE=hJ_UMzKTYvPT5NCIcRrq6bc1D7JZx9FZl9nzLqla8SM=
>
>
> ___
> OpenStack-operators mailing list
> OpenStack-operators@lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators
>
___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] Next Ops Midcycle NYC August 25-26

2016-07-07 Thread Allison Price
Hi Edvar and Saverio, 

I wanted to bring my colleague, Erin Disney, into this thread as she will be 
one of the points of contact from the Foundation for the Ops Midcycle in New 
York. She will be able to help answer the questions around the Eventbrite 
registration and visas. 

Cheers,
Allison


Allison Price
OpenStack Marketing
alli...@openstack.org


> On Jul 7, 2016, at 11:25 AM, Edgar Magana  wrote:
> 
> Folks,
> Do we have an eventbrite already set up?
> 
> Thanks,
> 
> Edgar
> 
> On 6/23/16, 1:14 PM, "Saverio Proto"  wrote:
> 
> Hello there :)
> 
> is anyone from the openstack foundation or from bloomberg that can
> help out with this ?
> 
> I share this for anyone that needs visa.
> 
> for Austin we had something like this:
> https://urldefense.proofpoint.com/v2/url?u=https-3A__www.openstack.org_summit_austin-2D2016_austin-2Dand-2Dtravel_=CwICAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=Sl397xp9_uCFp4UYQdcPuwBxeFn2lhzgmuF7fVt1pXE=wf9aH1oLv0jEU-Xw0tQijtKexSOVHWxi6gfy8iZn36g=
>  
> https://urldefense.proofpoint.com/v2/url?u=https-3A__openstackfoundation.formstack.com_forms_visa-5Fform-5Faustin-5Fsummit=CwICAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=Sl397xp9_uCFp4UYQdcPuwBxeFn2lhzgmuF7fVt1pXE=n4Mtj1sOz0froNvkbC4f-w7qd-lF26MJ1aFZWtSi_f8=
>  
> 
> anyone that needs to apply for Visa will need a 'US point of contact
> information'.
> 
> Basically, if the organizer of the Ops Midcycle is officially the
> openstack foundation or bloomberg, I need to enter in my visa
> application the following info:
> 
> Organization name
> Address in the US
> Phone number
> Email
> 
> It must be a phone number and a email where in case there is a check,
> somebody can tell "yes of course, this guy exist and is coming to the
> conference" :)
> 
> How we sort this out ?
> 
> thank you
> 
> Saverio
> 
> ___
> OpenStack-operators mailing list
> OpenStack-operators@lists.openstack.org
> https://urldefense.proofpoint.com/v2/url?u=http-3A__lists.openstack.org_cgi-2Dbin_mailman_listinfo_openstack-2Doperators=CwICAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=Sl397xp9_uCFp4UYQdcPuwBxeFn2lhzgmuF7fVt1pXE=hJ_UMzKTYvPT5NCIcRrq6bc1D7JZx9FZl9nzLqla8SM=
>  
> 
> 
> ___
> OpenStack-operators mailing list
> OpenStack-operators@lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] Next Ops Midcycle NYC August 25-26

2016-07-07 Thread Edgar Magana
Folks,
Do we have an eventbrite already set up?

Thanks,

Edgar

On 6/23/16, 1:14 PM, "Saverio Proto"  wrote:

Hello there :)

is anyone from the openstack foundation or from bloomberg that can
help out with this ?

I share this for anyone that needs visa.

for Austin we had something like this:
https://urldefense.proofpoint.com/v2/url?u=https-3A__www.openstack.org_summit_austin-2D2016_austin-2Dand-2Dtravel_=CwICAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=Sl397xp9_uCFp4UYQdcPuwBxeFn2lhzgmuF7fVt1pXE=wf9aH1oLv0jEU-Xw0tQijtKexSOVHWxi6gfy8iZn36g=
 
https://urldefense.proofpoint.com/v2/url?u=https-3A__openstackfoundation.formstack.com_forms_visa-5Fform-5Faustin-5Fsummit=CwICAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=Sl397xp9_uCFp4UYQdcPuwBxeFn2lhzgmuF7fVt1pXE=n4Mtj1sOz0froNvkbC4f-w7qd-lF26MJ1aFZWtSi_f8=
 

anyone that needs to apply for Visa will need a 'US point of contact
information'.

Basically, if the organizer of the Ops Midcycle is officially the
openstack foundation or bloomberg, I need to enter in my visa
application the following info:

Organization name
Address in the US
Phone number
Email

It must be a phone number and a email where in case there is a check,
somebody can tell "yes of course, this guy exist and is coming to the
conference" :)

How we sort this out ?

thank you

Saverio

___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
https://urldefense.proofpoint.com/v2/url?u=http-3A__lists.openstack.org_cgi-2Dbin_mailman_listinfo_openstack-2Doperators=CwICAg=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=Sl397xp9_uCFp4UYQdcPuwBxeFn2lhzgmuF7fVt1pXE=hJ_UMzKTYvPT5NCIcRrq6bc1D7JZx9FZl9nzLqla8SM=
 


___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] [User-committee] Seeking feedback: Active User Contributor (AUC) eligibility requirements

2016-07-07 Thread Edgar Magana
Good to have this question clarified.

Thanks,

Edgar

On 7/6/16, 3:18 PM, "Shamail"  wrote:



> On Jul 6, 2016, at 5:44 PM, Lauren Sell  wrote:
> 
> Hi Rocky,
> 
> Agreed! I think that’s the intent of the first bullet — official user group 
> organizers.

Completely agree, they are a vital part of the community and often are the 
first aspect of community that newcomers experience.  The first bullet is 
intended to ensure they are included in AUC.
> 
> Cheers,
> Lauren
> 
> 
>> On Jul 6, 2016, at 4:42 PM, Rochelle Grober  
>> wrote:
>> 
>> Umm, I see a major contribution area not included here:
>> 
>> OpenStack community meetup organizers.  I know some sink a large amount of 
>> time scheduling and organizing at least one a month, some two or more.  
>> These organizers are critical for getting info out on OpenStack and 
>> familiarizing their local tech communities with the OpenStack project.  I 
>> hope they are included somewhere for their contributions.
>> 
>> --Rocky
>> 
>> -Original Message-
>> From: Jonathan D. Proulx [mailto:j...@csail.mit.edu] 
>> Sent: Thursday, June 30, 2016 12:00 PM
>> To: Shamail Tahir
>> Cc: openstack-operators; user-committee
>> Subject: Re: [User-committee] Seeking feedback: Active User Contributor 
>> (AUC) eligibility requirements
>> 
>> 
>> I'm surprised this hasn't generated more feed back, though I'd
>> generally take that as positive.
>> 
>> List seems good to me.
>> 
>> The self nomintaion + confirm by UC is a good catch all especially in
>> the beginning where we're unlikely to have though of everything.  We
>> can always expand criterial later if the 'misc' of UC confirmantion
>> gets too big and we idnetify patterns.
>> 
>> Thanks all!
>> -Jon
>> 
>> On Wed, Jun 29, 2016 at 04:52:00PM -0400, Shamail Tahir wrote:
>> :Hi everyone,
>> :
>> :The AUC Recognition WG has been hard at work on milestone-4 of our plan
>> :which is to identify the eligibility criteria for each community
>> :contributor role that is covered by AUC.  We had a great mix of community
>> :people involved in defining these thresholds but we wanted to also open
>> :this up for broader community feedback before we propose them to the user
>> :committee.  AUC is a new concept and we hope to make iterative improvements
>> :going forward... you can consider the guidelines below as "version 1" and I
>> :am certain they will evolve as lessons are learned.  Thank you in advance
>> :for your feedback!
>> :
>> :*  Official User Group organizers
>> :
>> :o   Listed as an organizer or coordinator for an official OpenStack user
>> :group
>> :
>> :*  Active members of official UC Working Groups
>> :
>> :o   Attend 25% of the IRC meetings and have spoken more than 25 times OR
>> :have spoken more than 100 times regardless of attendance count over the
>> :last six months
>> :
>> :o   WG that do not use IRC for their meetings will depend on the meeting
>> :chair(s) to identify active participation from attendees
>> :
>> :*  Ops meetup moderators
>> :
>> :o   Moderate a session at the operators meetup over the last six
>> :months AND/OR
>> :
>> :o   Host the operators meetup (limit 2 people from the hosting
>> :organization) over the last six months
>> :
>> :*  Contributions to any repository under UC governance (ops
>> :repositories, user stories repository, etc.)
>> :
>> :o   Submitted two or more patches to a UC governed repository over the last
>> :six months
>> :
>> :*  Track chairs for OpenStack Summits
>> :
>> :o   Identified track chair for the upcoming OpenStack Summit (based on when
>> :data is gathered) [this is a forward-facing metric]
>> :
>> :*  Contributors to Superuser (articles, interviews, user stories, etc.)
>> :
>> :o   Listed as author in at least one publication at superuser.openstack.org
>> :over the last six months
>> :
>> :*  Submission for eligibility to AUC review panel
>> :
>> :o   No formal criteria, anyone can self-nominate, and nominations will be
>> :reviewed per guidance established in milestone-5
>> :
>> :*  Active moderators on ask.openstack
>> :
>> :o   Listed as moderator on Ask OpenStack and have over 500 karma
>> :
>> :There is additional information available in the etherpad[1] the AUC
>> :recognition WG has been using for this task which includes Q (question
>> :and answers) between team members.
>> :
>> :[1] 
>> https://urldefense.proofpoint.com/v2/url?u=https-3A__etherpad.openstack.org_p_uc-2Drecog-2Dmetrics=CwIGaQ=DS6PUFBBr_KiLo7Sjt3ljp5jaW5k2i9ijVXllEdOozc=G0XRJfDQsuBvqa_wpWyDAUlSpeMV4W1qfWqBfctlWwQ=ZbPal3xjxf0I-b_QC_8XFdbxXZUh_zhIsLLYtzKCXwo=pqinxE_krEV6hmTIfhRgij1cbObysnydk1yrx5A10Ig=
>>  
>> :
>> :-- 
>> :Thanks,
>> :Shamail Tahir
>> :t: @ShamailXD
>> :tz: Eastern Time
>> 
>> :___
>> :User-committee mailing list
>> :user-commit...@lists.openstack.org
>> 

Re: [Openstack-operators] How to create floating ip pool use nova network? thanks

2016-07-07 Thread Joe Topjian
In Kilo (I haven't verified Liberty or Mitaka), you can manage nova-network
floating IP pools with:

nova-manage floating --help
nova-manage floating create --help

Hope that helps!
Joe


On Wed, Jul 6, 2016 at 8:23 PM, 云淡风轻 <821696...@qq.com> wrote:

> hi everyone,
>
> How to create floating ip pool use nova network? thanks
>
>
> ___
> OpenStack-operators mailing list
> OpenStack-operators@lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators
>
>
___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


[Openstack-operators] Enable IPv6 for exsisting Kilo environment

2016-07-07 Thread suresh kumar
Hi All,

I want to enable IPv6 for existing kilo environment I have neutron
configured with provider network (neutron with tunneling segmentation).

1) Please let me know what configuration changes need to be done on neutron
and compute nodes.
2) Is it possible to create ipv6 vxlan on ipv4 tunnel?
3) how to modify images to support ipv4/ipv6 dual stack


Thanks,
Suresh
___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] PCI Passthrough issues

2016-07-07 Thread Jonathan Proulx
On Thu, Jul 07, 2016 at 11:13:29AM +1000, Blair Bethwaite wrote:
:Jon,
:
:Awesome, thanks for sharing. We've just run into an issue with SRIOV
:VF passthrough that sounds like it might be the same problem (device
:disappearing after a reboot), but haven't yet investigated deeply -
:this will help with somewhere to start!

:By the way, the nouveau mention was because we had missed it on some
:K80 hypervisors recently and seen passthrough apparently work, but
:then the NVIDIA drivers would not build in the guest as they claimed
:they could not find a supported device (despite the GPU being visible
:on the PCI bus). 

Definitely sage advice! 

:I have also heard passing mention of requiring qemu
:2.3+ but don't have any specific details of the related issue.

I didn't do a bisection but with qemu 2.2 (from ubuntu cloudarchive
kilo) I was sad and with 2.5 (from ubuntu cloudarchive mitaka but
installed on a kilo hypervisor) I am working.

Thanks,
-Jon


:Cheers,
:
:On 7 July 2016 at 08:13, Jonathan Proulx  wrote:
:> On Wed, Jul 06, 2016 at 12:32:26PM -0400, Jonathan D. Proulx wrote:
:> :
:> :I do have an odd remaining issue where I can run cuda jobs in the vm
:> :but snapshots fail and after pause (for snapshotting) the pci device
:> :can't be reattached (which is where i think it deletes the snapshot
:> :it took).  Got same issue with 3.16 and 4.4 kernels.
:> :
:> :Not very well categorized yet, but I'm hoping it's because the VM I
:> :was hacking on had it's libvirt.xml written out with the older qemu
:> :maybe?  It had been through a couple reboots of the physical system
:> :though.
:> :
:> :Currently building a fresh instance and bashing more keys...
:>
:> After an ugly bout of bashing I've solve my failing snapshot issue
:> which I'll post here in hopes of saving someonelse
:>
:> Short version:
:>
:> add "/dev/vfio/vfio rw," to  /etc/apparmor.d/abstractions/libvirt-qemu
:> add "ulimit -l unlimited" to /etc/init/libvirt-bin.conf
:>
:> Longer version:
:>
:> What was happening.
:>
:> * send snapshot request
:> * instance pauses while snapshot is pending
:> * instance attempt to resume
:> * fails to reattach pci device
:>   * nova-compute.log
:> Exception during message handling: internal error: unable to execute 
QEMU command 'device_add': Device initialization failedcompute.log
:>
:>   * qemu/.log
:> vfio: failed to open /dev/vfio/vfio: Permission denied
:> vfio: failed to setup container for group 48
:> vfio: failed to get group 48
:> * snapshot disappears
:> * instance resumes but without passed through device (hard reboot
:> reattaches)
:>
:> seeing permsission denied I though would be an easy fix but:
:>
:> # ls -l /dev/vfio/vfio
:> crw-rw-rw- 1 root root 10, 196 Jul  6 14:05 /dev/vfio/vfio
:>
:> so I'm guessing I'm in apparmor hell, I try adding "/dev/vfio/vfio
:> rw," to  /etc/apparmor.d/abstractions/libvirt-qemu rebooting the
:> hypervisor and trying again which gets me a different libvirt error
:> set:
:>
:> VFIO_MAP_DMA: -12
:> vfio_dma_map(0x5633a5fa69b0, 0x0, 0xa, 0x7f4e7be0) = -12 (Cannot 
allocate memory)
:>
:> kern.log (and thus dmesg) showing:
:> vfio_pin_pages: RLIMIT_MEMLOCK (65536) exceeded
:>
:> Getting rid of this one required inserting 'ulimit -l unlimited' into
:> /etc/init/libvirt-bin.conf in the 'script' section:
:>
:> 
:> script
:> [ -r /etc/default/libvirt-bin ] && . /etc/default/libvirt-bin
:> ulimit -l unlimited
:> exec /usr/sbin/libvirtd $libvirtd_opts
:> end script
:>
:>
:> -Jon
:>
:> ___
:> OpenStack-operators mailing list
:> OpenStack-operators@lists.openstack.org
:> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators
:
:
:
:-- 
:Cheers,
:~Blairo

-- 

___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] [telecom-nfv] New IRC channel - #opnfv-openstack

2016-07-07 Thread Curtis
On Thu, Jul 7, 2016 at 2:13 AM, Ulrich Kleber  wrote:
> Hi,
> we have setup an own IRC channel to discuss collaboration with OpenStack from 
> OPNFV side. Please join.

Thanks Uli, I will try to hang out in that channel. :)

Thanks,
Curtis.

> Cheers,
> Uli
>
>
> -Original Message-
> From: opnfv-tech-discuss-boun...@lists.opnfv.org 
> [mailto:opnfv-tech-discuss-boun...@lists.opnfv.org] On Behalf Of Dave Neary
> Sent: Wednesday, 06 July, 2016 15:57
> To: opnfv-tech-disc...@lists.opnfv.org; Csatari, Gergely (Nokia - HU/Budapest)
> Subject: [opnfv-tech-discuss] New IRC channel - #opnfv-openstack
>
> Hi,
>
> Gergely Csatari (who plays for OPNFV ;-) ) just started a new IRC channel on 
> Freenode called #opnfv-openstack, with the goal of having a place for OPNFV 
> people who are engaged in OpenStack (and OpenStack people interested in NFV) 
> can meet, and perhaps help out other people who are navigating the minefield.
>
> It's new, so currently not much is happening there, but it's intended to be a 
> place where you can get feedback on blueprints, hgand-holding through getting 
> signed up for various infra, working through community processes, getting 
> help on how to identify and find key people in the OpenStack projects you 
> care about, etc.
>
> Come along and join! One more channel for the auto-join list.
>
> Thanks,
> Dave.
>
> --
> Dave Neary - NFV/SDN Community Strategy
> Open Source and Standards, Red Hat - http://community.redhat.com
> Ph: +1-978-399-2182 / Cell: +1-978-799-3338 
> ___
> opnfv-tech-discuss mailing list
> opnfv-tech-disc...@lists.opnfv.org
> https://lists.opnfv.org/mailman/listinfo/opnfv-tech-discuss
>
> ___
> OpenStack-operators mailing list
> OpenStack-operators@lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators



-- 
Blog: serverascode.com

___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] Getting help with Python API

2016-07-07 Thread Jared Wilkinson
Thanks. I finally figured it out with the help of someone with a bit more 
Python knowledge than I have. I wasn’t able to figure out that the list was a 
list of arrays on my own. I would try to get the type for each one of the items 
in the list (which was the list of tenants, ids, etc), but it would return that 
it was  ‘’ and I didn’t know what 
to do with that since I expected something like  since that’s what 
it looked like when I just printed the line. After he pointed me to the fact it 
was an array (still not sure how to determine that other than just recognizing 
the output), I was able to pull the id just as you referenced.

Now on to figure out the new python-openstackclient API so I can use that 
instead!

Jared Wilkinson | Senior Infrastructure Engineer – Team Lead
jwilkin...@ebsco.com | (W) 205/981-4018 | (M) 205/259-9802
5724 US Highway 280 East, Birmingham, AL 35242, USA

From:  on behalf of Matt Fischer 
Date: Wednesday, July 6, 2016 at 9:04 PM
To: Jared Wilkinson 
Cc: "openstack-operators@lists.openstack.org" 

Subject: Re: [Openstack-operators] Getting help with Python API

When you make the API calls you're going to get back a list python objects 
which you need to iterate. I believe some APIs will let you ask for specific 
fields only, but this is simple enough:

keystone = client.Client(username=Username, password=Password, 
tenant_name=Tenant,
auth_url='http://%s:5000/v2.0' % (Ip))
tenants = keystone.tenants.list()
tenant_ids = []
for tenant in tenants:
tenant_ids.append(tenant.id)

Then you can process the tenant_ids list, of course once you done that you've 
lost the context of the object (like the name of the tenant).

For stuff like this the docs are your best bet along with introspecting the 
objects using the interactive python shell:

http://docs.openstack.org/developer/python-keystoneclient/

On Wed, Jul 6, 2016 at 12:53 PM, Jared Wilkinson 
> wrote:
Hey folks,

I am in the process of teaching myself Python and I have done a couple of free 
online courses but still have a fairly rudimentary understanding of Python, 
especially when it comes to using the OpenStack SDK. I was hoping you guys 
could point me to a mailing list for getting help with using the Python API 
calls in custom scripts. Specifically, something as simple as, return a list of 
all the tenant IDs (only) and push that send that to nova quota show and return 
just the CPU, memory, and storage metrics.

I can get the list of tenants from Keystone, but I can’t get it to just send me 
the list of IDs (we are using v2 of identity). I have read the documentation, 
but nothing there seems to help (or I am not quite strong enough in my Python 
skills to understand it) for this specific instance.

Any direction would be appreciated.

Thanks,
Jared

Jared Wilkinson | Senior Infrastructure Engineer – Team Lead
jwilkin...@ebsco.com | (W) 
205/981-4018 | (M) 205/259-9802
5724 US Highway 280 East, Birmingham, AL 35242, USA

___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators

___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] [puppet] - controller with mysql and rabbitmq have problem with puppet dependencies

2016-07-07 Thread Emilien Macchi
Good feedback!
However I'm afraid this is not the right channel for Puppetlabs
modules (rabbitmq, apache, mysql, etc) discussions. Please use
puppet-dev [1] if you want to get more attraction from Puppet
community.
If you need support about Puppet OpenStack [2], this place is the good
one though!

Thanks,

[1] https://groups.google.com/forum/#!forum/puppet-dev
[2] docs.openstack.org/developer/puppet-openstack-guide/

On Thu, Jul 7, 2016 at 7:49 AM, Saverio Proto  wrote:
> So it is puppetlabs-rabbitmq 5.4.0 that created this problem.
> I rolled back to 5.3.1
>
> Here is the commit that introduces the problem:
> https://github.com/puppetlabs/puppetlabs-rabbitmq/commit/df71b47413fa2e941850a42e82ba83d7f680529d
>
> Saverio
>
> 2016-07-07 13:18 GMT+02:00 Saverio Proto :
>> Hello,
>>
>> I have a pet server hosting both mysql and rabbitmq for openstack.
>> I guess this is common for many people running a Openstack Controller pet.
>>
>> I just figured out I have a strange problem with my puppet modules 
>> dependencies:
>>
>> puppetlabs-rabbitmq requires:
>> puppet-staging
>>
>> puppetlab-mysql requires:
>> nanliu-staging
>>
>> these 'staging' modules have a name collision, r10k will install them
>> into modules/staging/
>> so the latest one that is the Puppetfile wins.
>>
>> I know nanliu a old fork... but... which one of the two should I stick to ?
>>
>> Saverio
>
> ___
> OpenStack-operators mailing list
> OpenStack-operators@lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators



-- 
Emilien Macchi

___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] [puppet] - controller with mysql and rabbitmq have problem with puppet dependencies

2016-07-07 Thread Saverio Proto
So it is puppetlabs-rabbitmq 5.4.0 that created this problem.
I rolled back to 5.3.1

Here is the commit that introduces the problem:
https://github.com/puppetlabs/puppetlabs-rabbitmq/commit/df71b47413fa2e941850a42e82ba83d7f680529d

Saverio

2016-07-07 13:18 GMT+02:00 Saverio Proto :
> Hello,
>
> I have a pet server hosting both mysql and rabbitmq for openstack.
> I guess this is common for many people running a Openstack Controller pet.
>
> I just figured out I have a strange problem with my puppet modules 
> dependencies:
>
> puppetlabs-rabbitmq requires:
> puppet-staging
>
> puppetlab-mysql requires:
> nanliu-staging
>
> these 'staging' modules have a name collision, r10k will install them
> into modules/staging/
> so the latest one that is the Puppetfile wins.
>
> I know nanliu a old fork... but... which one of the two should I stick to ?
>
> Saverio

___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


[Openstack-operators] [puppet] - controller with mysql and rabbitmq have problem with puppet dependencies

2016-07-07 Thread Saverio Proto
Hello,

I have a pet server hosting both mysql and rabbitmq for openstack.
I guess this is common for many people running a Openstack Controller pet.

I just figured out I have a strange problem with my puppet modules dependencies:

puppetlabs-rabbitmq requires:
puppet-staging

puppetlab-mysql requires:
nanliu-staging

these 'staging' modules have a name collision, r10k will install them
into modules/staging/
so the latest one that is the Puppetfile wins.

I know nanliu a old fork... but... which one of the two should I stick to ?

Saverio

___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


[Openstack-operators] It is qcow2 or vmdk format ? to create openstack image and then auto create cluster on VMware station with windows?

2016-07-07 Thread ????????
hi ,
It is qcow2 or vmdk format ? to create openstack image and then auto create 
cluster on VMware station with windows?


thanks a lot!___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators