[Puppet Users] Re: Module team update: 2013-07-07 - 2013-07-12

2013-07-13 Thread Alessandro Franceschi
I insist on the question since I've not had answers previously: Any hope the redesign of the PuppetLabs modules will consider the suggested standards discussed here: https://github.com/stdmod/puppet-modules/blob/master/Parameters_List.md ? On Saturday, July 13, 2013 12:24:46 AM UTC+2, Ashley

Re: [Puppet Users] puppetlabs-ntp template discussion

2013-07-13 Thread Erik Dalén
I've been missing a way to set which server(s) should be preferred. We generally include all our NTP servers in the config but prefer the one that is in the same site as the node in question. So for a machine in site1 it would look like: server ntp.site1.example.com prefer server

Re: [Puppet Users] Re: Module team update: 2013-07-07 - 2013-07-12

2013-07-13 Thread Ashley Penney
On Sat, Jul 13, 2013 at 6:16 AM, Alessandro Franceschi a...@lab42.it wrote: I insist on the question since I've not had answers previously: Any hope the redesign of the PuppetLabs modules will consider the suggested standards discussed here:

Re: [Puppet Users] puppetlabs-ntp template discussion

2013-07-13 Thread Ashley Penney
On Sat, Jul 13, 2013 at 7:15 AM, Erik Dalén erik.gustav.da...@gmail.comwrote: I've been missing a way to set which server(s) should be preferred. We generally include all our NTP servers in the config but prefer the one that is in the same site as the node in question. So for a machine in

[Puppet Users] username/password combo for custom provider (couchbase)

2013-07-13 Thread Jakov Sosic
Hi, I'm trying to program custom type for managing Couchbase buckets. Problem is that every RW operation to Couchbase cluster (creating, deleting, resizing bucket) requires admin privileges (username/password). Do you have any suggestion how should I pass the username/password to provider? If

[Puppet Users] Re: ERB Template Newb Question

2013-07-13 Thread badgerea
Could you show the puppet code that sets '$rabbitmq_port' and '$rabbitmq_address' ? I'd recommend dropping a line like this in your template: *NODE_PORT=%= @rabbitmq_port.inspect %* (If you see 'nil', the variable either hasn't been set or has been set to 'undef'). Eric -- You received

Re: [Puppet Users] The handy Grail of Modules Standards

2013-07-13 Thread Ryan Coleman
Hey Al, sorry. I went on holiday and then had to unbury myself. I guess it's time I get my opinion out there. On Mon, Jul 1, 2013 at 2:33 AM, Alessandro Franceschi a...@lab42.it wrote: On Monday, July 1, 2013 5:21:44 AM UTC+2, Ryan Coleman wrote: Hi Al, et al. I apologize for being so late

Re: [Puppet Users] username/password combo for custom provider (couchbase)

2013-07-13 Thread Nan Liu
Crosspost to puppet-dev to get better feedback. On Sat, Jul 13, 2013 at 7:54 AM, Jakov Sosic jso...@srce.hr wrote: I'm trying to program custom type for managing Couchbase buckets. Problem is that every RW operation to Couchbase cluster (creating, deleting, resizing bucket) requires admin

Re: [Puppet Users] where do I configure 'max pool size'?

2013-07-13 Thread Matthew Burgess
On 13 July 2013 16:18, Steve Wray stevedw...@gmail.com wrote: Getting this error; The max pool size is currently 5; consider increasing it using MySQL. Surprisingly, I haven't been able to find exactly where I make the configuration change that Puppet suggests. Any clues? Just

Re: [Puppet Users] where do I configure 'max pool size'?

2013-07-13 Thread Ramin K
On 7/13/2013 8:18 AM, Steve Wray wrote: Getting this error; The max pool size is currently 5; consider increasing it using MySQL. Surprisingly, I haven't been able to find exactly where I make the configuration change that Puppet suggests. Any clues? Where is the error coming from? Also

Re: [Puppet Users] Re: Module team update: 2013-07-07 - 2013-07-12

2013-07-13 Thread Alessandro Franceschi
On Saturday, July 13, 2013 2:47:36 PM UTC+2, Ashley Penney wrote: On Sat, Jul 13, 2013 at 6:16 AM, Alessandro Franceschi a...@lab42.itjavascript: wrote: I insist on the question since I've not had answers previously: Any hope the redesign of the PuppetLabs modules will consider the

Re: [Puppet-dev] Re: [Puppet Users] Re: Module team update: 2013-07-07 - 2013-07-12

2013-07-13 Thread Ryan Coleman
On Sat, Jul 13, 2013 at 11:26 AM, Alessandro Franceschi a...@lab42.it wrote: Any place suggested by PuppetLabs on where to define modules standards is ok for me. If the discussion can be done directly on the relevant PR, it's ok for me too. Hi Al, I agree that the pattern itself needs more

Re: [Puppet Users] username/password combo for custom provider (couchbase)

2013-07-13 Thread Jakov Sosic
On 07/13/2013 06:43 PM, Nan Liu wrote: There's two options, one to store the username/password on server like mysql resource (~/my.cnf), or in catalog. I had discussions where some users prefer the former, but I'm in the later camp. First approach is OK, if the client program supports dot-conf

Re: [Puppet Users] Packages on fedora19

2013-07-13 Thread Michael Stahnke
Fedora 19 is now up on yum.puppetlabs.com. As a word of caution, this is the first distro to adopt Ruby 2.0, so there could be some bugs in a few spots. Please file if you run into them. http://projects.puppetlabs.com/projects/puppet-community-pkg-repo/issues/new stahnma -- You received

Re: [Puppet Users] Re: Yum.puppetlabs.com: Fedora 19

2013-07-13 Thread Michael Stahnke
Fedora 19 is now up on yum.puppetlabs.com. As a word of caution, this is the first distro to adopt Ruby 2.0, so there could be some bugs in a few spots. Please file if you run into them. http://projects.puppetlabs.com/projects/puppet-community-pkg-repo/issues/new stahnma -- You received

[Puppet Users] Accessing methods of parent provider

2013-07-13 Thread Schofield
I'm taking some time to refactor a custom provider. I'm trying to move common code into a parent provider so that it can be shared among all custom resource providers in the puppet module. While verifying I can call methods in the parent provider I get the following error: Error: Could not

Re: [Puppet Users] where do I configure 'max pool size'?

2013-07-13 Thread Steve Wray
Jul 14 02:36:51 puppet puppet-master[9566]: could not obtain a database connection within 5 seconds. The max pool size is currently 5; consider increasing it. Jul 14 02:37:14 puppet-master[9566]: last message repeated 12 times MySQL is configured for 300 connections. I have 72 hosts managed

Re: [Puppet Users] where do I configure 'max pool size'?

2013-07-13 Thread Ramin K
What you're running into is the default value of the Mysql connection pool that is set within the gem Activerecord. You can use dbconnections = 10 to increase it. However it appears you're using the webrick Puppet master so it seems a bit strange that a single thread can use all five