Cristian Falcas
2013-Oct-16 08:36 UTC
[Puppet Users] different environments per puppet master
Hi, Is there any possibility to do different environments(puppet classes) per organization/location based on a smart proxy(puppet master)? Or any plans to implement this? Thank you, Cristian Falcas -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users. For more options, visit https://groups.google.com/groups/opt_out.
Armindo Silva
2013-Oct-16 11:06 UTC
[Puppet Users] Re: different environments per puppet master
You can define different classes for each organization/location and then include the right ones of the node definitions - you can also define generic nodes (with a regexp) that cover all nodes per location. example: node /(your regexp)\.location1/ { include classA_location1 include classB_location1 } node /(your regexp)\.location2/ { include classA_location2 include classB_location2 } On Wednesday, October 16, 2013 9:36:35 AM UTC+1, Cristian Falcas wrote:> > Hi, > > Is there any possibility to do different environments(puppet classes) > per organization/location based on a smart proxy(puppet master)? > > Or any plans to implement this? > > Thank you, > Cristian Falcas >-- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users. For more options, visit https://groups.google.com/groups/opt_out.
Cristian Falcas
2013-Oct-16 11:13 UTC
Re: [Puppet Users] Re: different environments per puppet master
Thank you very much. On Wed, Oct 16, 2013 at 2:06 PM, Armindo Silva <deathon2legs@gmail.com> wrote:> You can define different classes for each organization/location and then > include the right ones of the node definitions - you can also define generic > nodes (with a regexp) that cover all nodes per location. > > example: > > node /(your regexp)\.location1/ { > > include classA_location1 > include classB_location1 > } > > > node /(your regexp)\.location2/ { > > include classA_location2 > include classB_location2 > > } > > > On Wednesday, October 16, 2013 9:36:35 AM UTC+1, Cristian Falcas wrote: >> >> Hi, >> >> Is there any possibility to do different environments(puppet classes) >> per organization/location based on a smart proxy(puppet master)? >> >> Or any plans to implement this? >> >> Thank you, >> Cristian Falcas > > -- > You received this message because you are subscribed to the Google Groups > "Puppet Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to puppet-users+unsubscribe@googlegroups.com. > To post to this group, send email to puppet-users@googlegroups.com. > Visit this group at http://groups.google.com/group/puppet-users. > For more options, visit https://groups.google.com/groups/opt_out.-- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users. For more options, visit https://groups.google.com/groups/opt_out.