Let me disagree :-) Actually I found the nodes' inheritance model an easy to grasp, mantain and manage way to set and override variables according to whatever grouping logic. I've used it for almost 5 years, in several different Puppet setups of different scales and it has always fit well. * Given the precautions to use it ONLY to set and override variables and not to include classes. *
I'm definitively disappointed that I won't be able to use it in the next Puppet version and I'm still struggling to find a decent alternative (suggestions?). Hiera can be an alternative, and will probably be the "right thing" when is incorporated in the next version, but it has its own cons, imho. my2c al On Tuesday, March 20, 2012 3:57:17 PM UTC+1, Garrett Honeycutt wrote: > > On 3/19/12 3:55 PM, Alessandro Franceschi wrote: > > Just a quick note, not strictly related to your question > > Be careful when including classes with nodes' inheritance: if you set a > > variable, for example, in the node "web" that is used by classes > > included in the baseline class, that variable' value will be ignored. > > It's a typical "variables scoping issue" that has contributed to the bad > > reputation of the nodes' inheritance layout. > > > > My rule of thumb is: > > Use node's inheritance ONLY to set and override variables, and include > > classes ONLY at the $hostname node level (at the ned of the inheritance > > tree) > > To avoid duplications you case still include webstuff there and in the > > webstaff class "include baseline". > > > > Sadly this whole nodes' inheritance use to dynamically override > > variables will break in the next version of Puppet. > > ( for more info http://docs.puppetlabs.com/guides/scope_and_puppet.html) > > > > al > > > > On Thursday, March 15, 2012 6:13:33 PM UTC+1, octomeow wrote: > > > > Hi > > > > I have a very simple set up > > > > node default { > > #declare classes for all nodes > > include baseline > > } > > node app inherits default { > > include appstuff > > } > > > > node web inherits default { > > iclude websutff > > } > > > > HOWEVER, I'm getting notification that node "web" is applying class > > appstuff > > how could something like that happen? Any advice? > > > > I would strongly encourage you to never use inheritance with nodes and > only to use inheritance within a given module[1]. > > Instead of > > node default { > include baseline > } > node app inherits default { > include appstuff > } > > I would recommend > > node default {} > node app { > include baseline # though, I recommend this is named 'common' > include appstuff > } > > [1] - http://docs.puppetlabs.com/guides/style_guide.html#class-inheritance > > -g > > -- > Garrett Honeycutt > > 206.414.8658 > http://puppetlabs.com > > -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/M8Kh-U1ZUUQJ. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.