So its been a long time overdue that we made improvements to our Puppet code.
For at least a year we've relied on assigning multiple 'roles' to a node using this "truth enforcer" module from jordan sissel (link).
The biggest problem we had was that we treated each 'role' independent of the others. Each role lived in its own "IF" statement. The enforcer would go through and add these roles (and thus their resources) to the catalog. But, as you know, without specifying resource ordering, puppet could apply the roles in any order it wanted. So we had cases where tomcat would come up before the mongo client (and that was bad).
Sadly (we knew it was wrong, we just didnt have a better solution at the time), we put a dependency in our tomcat module to need mongo client to complete first. It was frustrating to know that we had just tightly coupled our tomcat module to our mongo client module... but nobody had a better solution at the time.
Then I watched this "Doing the Refactor Dance by Gary Larizza" (link).
I realized that what we were calling 'roles' would really be more equivalent to what the more fluent puppet people out there would call 'profiles'.
The solution seems to be adding one more layer of puppet into the mix. This new layer will truly be a role. A role will include multiple profiles (we are demoting all of our exisiting roles to be profiles via naming conventions...) and the role will be able to declare dependencies across those profiles.
- Role (can define ordering of profiles) (conceptually business logic)
- Profile (can define ordering of modules) (conceptually a technology stack)
- Component/Module
- Classes & Resources
- Component/Module
- Classes & Resources
- Profile
- Component/Module
- Classes & Resources
- Component/Module
- Classes & Resources
Also you can read these posts (link) (link).
And here's a pretty picture I stole from one of those links above:
p.s. i probably still suck at puppet
No comments:
Post a Comment