Re: [Openstack-operators] [dnsmasq] setting ntp-server

2017-08-18 Thread David Medberry
Cool beans. Thanks for asking/answering your own question!
___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] [dnsmasq] setting ntp-server

2017-08-18 Thread Carlos Konstanski
tldr; you have to use an IP address, not a DNS name, in the ntp-server
config.

In dhcp_agent.ini:

dnsmasq_config_file = /etc/neutron/dnsmasq.conf

In /etc/neutron/dnsmasq.conf:

dhcp-option=option:ntp-server,

I was trying to use a  instead of an  . The result
was that the floating IP was not being wired correctly. Packets were not
making it to the qr device. Not sure why.

But with an IP address, everything works and a
/var/lib/ntp/ntp.conf.dhcp gets written. As long as the /etc/init.d/ntp
script looks for this file, everything is golden.

Carlos

Carlos Konstanski  writes:

> I am searching for a way to set NTP servers in instances. Thre are at
> least two ways to do this that come to mind: DHCP and cloud.cfg. I would
> like to explore DHCP for this discussion.
>
> dnsmasq supports the following configuration:
>
> dhcp-option=option:ntp-server,,,...
>
> In the Ubuntu /etc/init.d/ntp service script the following can be found:
>
> if [ /var/lib/ntp/ntp.conf.dhcp -nt /etc/ntp.conf ]; then
> NTPD_OPTS="$NTPD_OPTS -c /var/lib/ntp/ntp.conf.dhcp"
> fi
>
> It would seem that the two work together to allow DHCP to override
> /etc/ntp.conf.
>
> The question is how to get openstack to configure dnsmasq thusly. There
> are two possibilities: a neutron config option or the overriding of the
> entire dnsmasq.conf. The former would be mch simpler and less messy. Is
> there such a setting in neutron.conf?
>
> Carlos Konstanski
>
> ___
> 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] [LCOO] August 17 General Coordination meeting

2017-08-18 Thread Curtis
On Fri, Aug 18, 2017 at 8:54 AM, MCCABE, JAMEY A  wrote:
> Thanks for the attention Jay and Curtis.  We did have IRC session live with
> our LCOO bi-weekly meeting yesterday. It was a trial – both IRC and the
> Telephone/Video bridge at the same time.  Here’s the IRC part:
> http://eavesdrop.openstack.org/meetings/lcoo/ Not much about merger of
> Operators Telco/NFV was discussed.  We’ll invite Curtis to an upcoming
> session and try to get others from LCOO member operations teams to also
> come.

Thanks Jamey. Let me know when to attend and I'll be there. :)

I can help getting info into IRC as well, as in participate in both
IRC and the phone call.

Thanks,
Curtis.

>
>
>
>
>
> While I have the podium and for those interested, the LCOO Working Group was
> started by a group of Private Cloud Operators who wanted to bring more
> collaborative attention (read our own community development teams) to
> implementing enhancements or maintenance of things we find in common.  The
> idea is to bring in such organizations as a whole with Stakeholders in those
> companies coming to value it and thus devoting more resources to the
> community teams over time.  A number of us are of the Telecom type but we
> tried not to limit it since the definition of Telecom and Communications is
> rapidly changing. It’s slow going and still trying to get to the point where
> we have clear examples of our delivery of things via this approach. Extreme
> Testing (for us we call a Specialization) is one we instigated and
> facilitating.  It is being discussed in in openstack-dev ML and we are
> working hard to bring it appropriately to PTG and Sydney Summit (and SIGs
> approach). Anyway if anyone is interested to investigate further, please
> reply or reach out to me: jamemcc at gmail dot com.
>
>
>
>
>
> On 08/16/2017 09:25 PM, Curtis wrote:
>
>> On Wed, Aug 16, 2017 at 12:03 AM, Jay Pipes  wrote:
>
>>> Hi Curtis, Andrew U, Jamie M,
>
>>>
>
>>> May I request that if the telco working group merges with the LCOO, that
>>> we
>
>>> get regular updates to the openstack[-operator|-dev] mailing list with
>
>>> information about the goings-on of LCOO? Would be good to get a bi-weekly
>>> or
>
>>> even monthly summary.
>
>>>
>
>>> Other working groups host their meetings on IRC and publish status
>>> reports
>
>>> to the mailing lists fairly regularly. I personally find this information
>
>>> quite useful and would be great to see a similar effort from LCOO.
>
>>
>
>> If we do merge I will see what I can do. :)
>
>
>
> Cool, thanks Curtis. The publish-to-ML summaries of working groups have
>
> been very helpful for me.
>
>
>
> Best,
>
> -jay
>
>
>
>
> ___
> 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] [dnsmasq] setting ntp-server

2017-08-18 Thread Abel Lopez
Another option is to make customized guest images that are preconfigured as you 
like them.

In a previous role, I had to maintain all linux distro guest images for use 
inside a corporate cloud deploy. This included pointing ntpd to corp IT ntp 
servers for compliance.

I did this by creating a custom element for diskimage-builder, and we would 
periodically update the images.

> On Aug 18, 2017, at 12:35 PM, Carlos Konstanski 
>  wrote:
> 
> I am searching for a way to set NTP servers in instances. Thre are at
> least two ways to do this that come to mind: DHCP and cloud.cfg. I would
> like to explore DHCP for this discussion.
> 
> dnsmasq supports the following configuration:
> 
>dhcp-option=option:ntp-server,,,...
> 
> In the Ubuntu /etc/init.d/ntp service script the following can be found:
> 
>if [ /var/lib/ntp/ntp.conf.dhcp -nt /etc/ntp.conf ]; then
>NTPD_OPTS="$NTPD_OPTS -c /var/lib/ntp/ntp.conf.dhcp"
>fi
> 
> It would seem that the two work together to allow DHCP to override
> /etc/ntp.conf.
> 
> The question is how to get openstack to configure dnsmasq thusly. There
> are two possibilities: a neutron config option or the overriding of the
> entire dnsmasq.conf. The former would be mch simpler and less messy. Is
> there such a setting in neutron.conf?
> 
> Carlos Konstanski
> 
> ___
> OpenStack-operators mailing list
> OpenStack-operators@lists.openstack.org
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators



signature.asc
Description: Message signed with OpenPGP
___
OpenStack-operators mailing list
OpenStack-operators@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators


Re: [Openstack-operators] [OpenStack-docs] [doc] Operations Guide removal

2017-08-18 Thread Chris Morgan
I have just completed loading the files into the wiki for perusal. You can
see the files here in my contrib list
https://wiki.openstack.org/wiki/Special:Contributions/Cmorgan2

I have not fixed the contents page (which was blank) nor made forward and
back links so that you can go from one to the next page. This just allows
us to see how the conversion output looks right now. I am aware we may need
to redo all this. Please take a look!

Chris

On Mon, Aug 14, 2017 at 9:07 PM, Yuki Kasuya 
wrote:

> Hi Chris,
>
> Attached is all converting files under "openstack-manuals/doc/ops-gui
> de/source".
>
> Best regards,
> Yuki
>
> On 8/15/17 03:15, Chris Morgan wrote:
>
>> I have privileges to edit wiki pages on openstack.org
>>  so you could send me a few converted pages
>> (perhaps ones that link to each other) and I could upload them and we
>> can all look at the result and see if we like it. Happy to do that.
>>
>> Chris
>>
>> On Sun, Aug 13, 2017 at 9:44 PM, Yuki Kasuya > > wrote:
>>
>> Hi,
>>
>> How about that if some directives can be ignored (using pandoc),
>> I'll create one new ops-guide page as a example on wiki. After that
>> could you review it ? I don't know any approval to create/edit pages
>> on wiki. Or I can send you converting files. Attached is a
>> converting example.
>> And let's discuss which url is good for new ops-guides like below.
>> Which is good using file name or first header as url of wiki? And
>> which directory is fine?
>>
>> https://wiki.openstack.org/wiki/OpsGuide
>>  (as index)
>> https://wiki.openstack.org/wiki/OpsGuide/acknowledgements
>> 
>> https://wiki.openstack.org/wiki/OpsGuide/app-crypt
>> 
>> ...
>>
>> Best regards,
>> Yuki
>>
>> On 8/12/17 23:38, Chris Morgan wrote:
>>
>> I just got back from the ops meetup in Mexico City and I think I
>> volunteered to help with this ops guide transition and
>> maintaining it on
>> the wiki. So if the current output of the conversion is available
>> anywhere for review I could try being a proofreader for it. It
>> seems
>> there is approval to put it as is on the wiki, what does that
>> require?
>>
>> I am not very familiar with the docs build process so if we are
>> still
>> attempting to get a minimally viable conversion I may be able to
>> help
>> but will need more time to come up to speed with that.
>>
>> Chris
>>
>> On Thu, Aug 10, 2017 at 8:47 AM, Anne Gentle
>> > 
>> > >>
>> wrote:
>>
>> On Thu, Aug 10, 2017 at 3:09 AM, Yuki Kasuya
>> > 
>> > >> wrote:
>> > Hi,
>> >
>> >
>> > On 7/19/17 23:51, Anne Gentle wrote:
>> >>
>> >> On Wed, Jul 19, 2017 at 5:51 AM, Doug Hellmann
>> 
>> >>
>>
>> >> wrote:
>> >>>
>> >>> Excerpts from Blair Bethwaite's message of 2017-07-19
>> 20:40:25
>> +1000:
>> 
>>  Hi Alex,
>> 
>>  I just managed to take a half hour to look at this and
>> have a few
>>  questions/comments towards making a plan for how to
>> proceed with
>>  moving the Ops Guide content to the wiki...
>> 
>>  1) Need to define wiki location and structure.
>> Curiously at the
>> moment
>>  there is already meta content at
>>  https://wiki.openstack.org/wiki/Documentation/OpsGuide
>> 
>> > >, Maybe
>> the
>>  content could live at
>> https://wiki.openstack.org/wiki/OpsGuide
>> 
>> > >? I
>>
>>  think it makes sense to follow the existing structure
>> with possible
>>  

[Openstack-operators] [dnsmasq] setting ntp-server

2017-08-18 Thread Carlos Konstanski
I am searching for a way to set NTP servers in instances. Thre are at
least two ways to do this that come to mind: DHCP and cloud.cfg. I would
like to explore DHCP for this discussion.

dnsmasq supports the following configuration:

dhcp-option=option:ntp-server,,,...

In the Ubuntu /etc/init.d/ntp service script the following can be found:

if [ /var/lib/ntp/ntp.conf.dhcp -nt /etc/ntp.conf ]; then
NTPD_OPTS="$NTPD_OPTS -c /var/lib/ntp/ntp.conf.dhcp"
fi

It would seem that the two work together to allow DHCP to override
/etc/ntp.conf.

The question is how to get openstack to configure dnsmasq thusly. There
are two possibilities: a neutron config option or the overriding of the
entire dnsmasq.conf. The former would be mch simpler and less messy. Is
there such a setting in neutron.conf?

Carlos Konstanski

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


[Openstack-operators] The OpenStack Summit Sydney schedule is live!

2017-08-18 Thread Allison Price
Hi everyone,

The main conference schedule for the upcoming OpenStack Summit in Sydney 
 is now available! 

SCHEDULE: https://www.openstack.org/summit/sydney-2017/summit-schedule/ 


Log in with your OpenStackID  and start building your 
schedule now! It will automatically sync with the mobile app, which will be 
available in the coming weeks. 

Register now  at the early 
bird discounted rate on your Summit ticket before prices increase on September 
8 at 11:59pm Pacific Time (September 9 at 6:59 UTC).


IMPORTANT INFORMATION
View a list of nearby hotels on our website here 
.
Visa Information : 
All non-Australian residents will need a visa to travel to Australia.
Interested in sponsoring the Summit? Learn more here 
.


SPEAKER NOTIFICATIONS
If you submitted a talk - check your email. Everyone who submitted a speaking 
proposal for the Summit will receive an email notification to let them know 
whether or not their talk has been accepted. The email sent to selected 
speakers was sent from speakersupp...@openstack.org 
 and contains important next steps and 
speaker registration codes. Each speaker is responsible for registering 
themselves to attend the Summit; please make sure your colleagues read the 
email and complete this step.

Contact sum...@openstack.org  with any questions.

See you in Sydney!

Cheers,
Allison 

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


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


[Openstack-operators] [LCOO] August 17 General Coordination meeting

2017-08-18 Thread MCCABE, JAMEY A
Thanks for the attention Jay and Curtis.  We did have IRC session live with our 
LCOO bi-weekly meeting yesterday. It was a trial - both IRC and the 
Telephone/Video bridge at the same time.  Here's the IRC part: 
http://eavesdrop.openstack.org/meetings/lcoo/ Not much about merger of 
Operators Telco/NFV was discussed.  We'll invite Curtis to an upcoming session 
and try to get others from LCOO member operations teams to also come.





While I have the podium and for those interested, the LCOO Working Group was 
started by a group of Private Cloud Operators who wanted to bring more 
collaborative attention (read our own community development teams) to 
implementing enhancements or maintenance of things we find in common.  The idea 
is to bring in such organizations as a whole with Stakeholders in those 
companies coming to value it and thus devoting more resources to the community 
teams over time.  A number of us are of the Telecom type but we tried not to 
limit it since the definition of Telecom and Communications is rapidly 
changing. It's slow going and still trying to get to the point where we have 
clear examples of our delivery of things via this approach. Extreme Testing 
(for us we call a Specialization) is one we instigated and facilitating.  It is 
being discussed in in openstack-dev ML and we are working hard to bring it 
appropriately to PTG and Sydney Summit (and SIGs approach). Anyway if anyone is 
interested to investigate further, please reply or reach out to me: jamemcc at 
gmail dot com.





On 08/16/2017 09:25 PM, Curtis wrote:

> On Wed, Aug 16, 2017 at 12:03 AM, Jay Pipes  gmail.com>
>  wrote:

>> Hi Curtis, Andrew U, Jamie M,

>>

>> May I request that if the telco working group merges with the LCOO, that we

>> get regular updates to the openstack[-operator|-dev] mailing list with

>> information about the goings-on of LCOO? Would be good to get a bi-weekly or

>> even monthly summary.

>>

>> Other working groups host their meetings on IRC and publish status reports

>> to the mailing lists fairly regularly. I personally find this information

>> quite useful and would be great to see a similar effort from LCOO.

>

> If we do merge I will see what I can do. :)



Cool, thanks Curtis. The publish-to-ML summaries of working groups have

been very helpful for me.



Best,

-jay

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