SlideShare a Scribd company logo
Cookbook Reusability
Noah Kantrowitz
Balanced, Inc
The problem
Community cookbooks only
do 90% of what you need.
Reusable Cookbook Patterns
New Problem

•
Complex contribution process.
•
Forking during iteration.
•
Proliferation of special cases.
Wrapper Cookbooks

•
Overriding attributes.
•
chef-rewind, here be dragons.
•

Extension by prepend/append.
Requirements

• Responsive effort:
5% change

~5% work

• Documented extension mechanism.
Integration with kitchen, berks, etc.
•
DevOps
LWRPs?

•
Still only prepend/append.
•
No substitution except rewind.
•
Better, but not by much.
Enter: Classes
class Chef
class Resource::Something < Resource
...
end
class Provider::Something < Provider
...
end
end
Chef::Resource
def initialize(*args)
super
@resource_name = :something
@action = :enable
@allowed_actions = [
:enable, :disable
]
end
Chef::Resource
def path(arg=nil)
set_or_return(:path, arg, {
kind_of: String
})
end
Chef::Provider
def load_current_resource
end
def whyrun_supported?
true
end
def action_enable
...
end
Why?

•
• No really, subclassing!
Allows detailed, responsive
•
Subclassing.

customization.
Verbosity

• A lot of boilerplate code.
Missing some LWRP DSL goodies.
•
Poise
Poise
class Resource::Something < Resource
include Poise
...
end
class Provider::Something < Provider
include Poise
...
end
LWRP-ese
class Resource::Something < Resource
include Poise
actions(:enable, :disable)
attribute(:path, kind_of: String)
end
Notifying Block
def action_enable
notifying_block do
...
end
end
Include Recipe
def action_enable
include_recipe 'something'
end
Lazy Defaults
class Resource::Something < Resource
include Poise
attribute(:path,
default: lazy { node['path'] }
)
end
Option Collector
class Resource::Something < Resource
include Poise
attribute(:database,
option_collector: True)
end
Option Collector
something 'one' do
database host: 'a', port: 8000
end
Option Collector
something 'one' do
database do
host 'a'
port 8000
end
end
Sub-resources
class Resource::Something < Resource
include Poise(container: true)
end
Sub-resources
class Resource::Foo < Resource
include Poise(parent: Something)
end
Sub-resources
something 'one' do
...
foo 'asdf' do
...
end
end
Sub-resources
something 'one' do
...
end
foo 'asdf' do
parent 'one'
end
Sub-resources
something 'one'
foo 'asdf'
Distribution
• Cookbooks?
• Gems?

More Related Content

Similar to Reusable Cookbook Patterns (20)

Cookbook Reusability @ Chef Community summit 2014
Cookbook Reusability @ Chef Community summit 2014
Sean OMeara
 
Introduction to Cooking with Chef
Introduction to Cooking with Chef
John Osborne
 
Node object and roles - Fundamentals Webinar Series Part 3
Node object and roles - Fundamentals Webinar Series Part 3
Chef
 
Lessons from Etsy: Avoiding Kitchen Nightmares - #ChefConf 2012
Lessons from Etsy: Avoiding Kitchen Nightmares - #ChefConf 2012
Patrick McDonnell
 
Lwrp presentation
Lwrp presentation
geekbri
 
Chef resources
Chef resources
Denis Looby
 
Modernizing Legacy Applications in PHP, por Paul Jones
Modernizing Legacy Applications in PHP, por Paul Jones
iMasters
 
Community Cookbooks & further resources - Fundamentals Webinar Series Part 6
Community Cookbooks & further resources - Fundamentals Webinar Series Part 6
Chef
 
The Five Stages of Chef Grief: My First 6 months with Chef, and Getting Aroun...
The Five Stages of Chef Grief: My First 6 months with Chef, and Getting Aroun...
DevOpsDays Austin 2014
 
Getting Started with Test-Driven Development at Midwest PHP 2021
Getting Started with Test-Driven Development at Midwest PHP 2021
Scott Keck-Warren
 
Chef Fundamentals Training Series Module 1: Overview of Chef
Chef Fundamentals Training Series Module 1: Overview of Chef
Chef Software, Inc.
 
Puppet Camp New York 2015: Puppet Enterprise Scaling Lessons Learned (Interme...
Puppet Camp New York 2015: Puppet Enterprise Scaling Lessons Learned (Interme...
Puppet
 
Scaling to-5000-nodes
Scaling to-5000-nodes
Philip Watts
 
Building a PaaS using Chef
Building a PaaS using Chef
Shaun Domingo
 
What Makes a Good Cookbook?
What Makes a Good Cookbook?
Julian Dunn
 
Configuration management with Chef
Configuration management with Chef
Juan Vicente Herrera Ruiz de Alejo
 
Emerging chef patterns and practices
Emerging chef patterns and practices
Owain Perry
 
Common configuration with Data Bags - Fundamentals Webinar Series Part 4
Common configuration with Data Bags - Fundamentals Webinar Series Part 4
Chef
 
Chef at WebMD
Chef at WebMD
adamleff
 
Background Jobs with Resque
Background Jobs with Resque
homanj
 
Cookbook Reusability @ Chef Community summit 2014
Cookbook Reusability @ Chef Community summit 2014
Sean OMeara
 
Introduction to Cooking with Chef
Introduction to Cooking with Chef
John Osborne
 
Node object and roles - Fundamentals Webinar Series Part 3
Node object and roles - Fundamentals Webinar Series Part 3
Chef
 
Lessons from Etsy: Avoiding Kitchen Nightmares - #ChefConf 2012
Lessons from Etsy: Avoiding Kitchen Nightmares - #ChefConf 2012
Patrick McDonnell
 
Lwrp presentation
Lwrp presentation
geekbri
 
Modernizing Legacy Applications in PHP, por Paul Jones
Modernizing Legacy Applications in PHP, por Paul Jones
iMasters
 
Community Cookbooks & further resources - Fundamentals Webinar Series Part 6
Community Cookbooks & further resources - Fundamentals Webinar Series Part 6
Chef
 
The Five Stages of Chef Grief: My First 6 months with Chef, and Getting Aroun...
The Five Stages of Chef Grief: My First 6 months with Chef, and Getting Aroun...
DevOpsDays Austin 2014
 
Getting Started with Test-Driven Development at Midwest PHP 2021
Getting Started with Test-Driven Development at Midwest PHP 2021
Scott Keck-Warren
 
Chef Fundamentals Training Series Module 1: Overview of Chef
Chef Fundamentals Training Series Module 1: Overview of Chef
Chef Software, Inc.
 
Puppet Camp New York 2015: Puppet Enterprise Scaling Lessons Learned (Interme...
Puppet Camp New York 2015: Puppet Enterprise Scaling Lessons Learned (Interme...
Puppet
 
Scaling to-5000-nodes
Scaling to-5000-nodes
Philip Watts
 
Building a PaaS using Chef
Building a PaaS using Chef
Shaun Domingo
 
What Makes a Good Cookbook?
What Makes a Good Cookbook?
Julian Dunn
 
Emerging chef patterns and practices
Emerging chef patterns and practices
Owain Perry
 
Common configuration with Data Bags - Fundamentals Webinar Series Part 4
Common configuration with Data Bags - Fundamentals Webinar Series Part 4
Chef
 
Chef at WebMD
Chef at WebMD
adamleff
 
Background Jobs with Resque
Background Jobs with Resque
homanj
 

Recently uploaded (20)

Season 12 _ EP03 - The Coked up Quiz .pdf
Season 12 _ EP03 - The Coked up Quiz .pdf
Quiz Club, Indian Institute of Technology, Patna
 
HSE-BMS-032 Cancer Causing Chemicals.PPT
HSE-BMS-032 Cancer Causing Chemicals.PPT
mujtaba1mk
 
ppt on adventure of toto(class 9) english
ppt on adventure of toto(class 9) english
bhoomigoel654321
 
Baby oil m123131aking tutorial (natural ingresients.pptx
Baby oil m123131aking tutorial (natural ingresients.pptx
RanitMal
 
Conservative Podcasts: Shaping Political Narratives in the Digital Age
Conservative Podcasts: Shaping Political Narratives in the Digital Age
Breaking Battlegrounds
 
Ganimatoonics Finals || QM: Agastya and Nikhil || Quark'25 || BITS Pilani, KK...
Ganimatoonics Finals || QM: Agastya and Nikhil || Quark'25 || BITS Pilani, KK...
BITS Goa Quiz Club
 
Lit Quiz Finals || QM: Shivansh Verma, Dhruba Chatterjee & Suhani Timbadia ||...
Lit Quiz Finals || QM: Shivansh Verma, Dhruba Chatterjee & Suhani Timbadia ||...
BITS Goa Quiz Club
 
Bouba and Zaza Respect Water Pitch Bible
Bouba and Zaza Respect Water Pitch Bible
AdelaHurtado
 
Past simple, present perfect or present perfect continuous
Past simple, present perfect or present perfect continuous
trucn4
 
The Other Side of the Myth: Ereshkigal and the Villainess’s Journey
The Other Side of the Myth: Ereshkigal and the Villainess’s Journey
Valerie Frankel
 
How Enzo Zelocchi Leveraged 28 Million Followers to Build a Global Brand That...
How Enzo Zelocchi Leveraged 28 Million Followers to Build a Global Brand That...
Enzo Zelocchi Fan Page
 
Lit Quiz Prelims || QM: Shivansh Verma, Dhruba Chatterjee & Suhani Timbadia |...
Lit Quiz Prelims || QM: Shivansh Verma, Dhruba Chatterjee & Suhani Timbadia |...
BITS Goa Quiz Club
 
最新版西班牙巴拿马大学毕业证(Panamá毕业证书)原版定制
最新版西班牙巴拿马大学毕业证(Panamá毕业证书)原版定制
Taqyea
 
Cybersecurity_in_Education_System_Advanced.pptx
Cybersecurity_in_Education_System_Advanced.pptx
safamanz001safa
 
Mastering-Event-Management-Creating-Unforgettable-Experiences.pdf
Mastering-Event-Management-Creating-Unforgettable-Experiences.pdf
Mosaic Live
 
feliz dia de san patricio celebrarlo como actividad
feliz dia de san patricio celebrarlo como actividad
info2025gloriamanzan
 
Reasons why basketball is my favorite hobby?
Reasons why basketball is my favorite hobby?
memi27
 
Ganimatoonics Prelims || QM: Agastya Sanyal and Nikhil Vinay || Quark'25 || B...
Ganimatoonics Prelims || QM: Agastya Sanyal and Nikhil Vinay || Quark'25 || B...
BITS Goa Quiz Club
 
Reasons why dancing iw my favorite hobby favorite hobby (2).pptx
Reasons why dancing iw my favorite hobby favorite hobby (2).pptx
memi27
 
Presentation1 bio 2.pdf This to know about my life i am rengooz.
Presentation1 bio 2.pdf This to know about my life i am rengooz.
RenGooZ SBUH
 
HSE-BMS-032 Cancer Causing Chemicals.PPT
HSE-BMS-032 Cancer Causing Chemicals.PPT
mujtaba1mk
 
ppt on adventure of toto(class 9) english
ppt on adventure of toto(class 9) english
bhoomigoel654321
 
Baby oil m123131aking tutorial (natural ingresients.pptx
Baby oil m123131aking tutorial (natural ingresients.pptx
RanitMal
 
Conservative Podcasts: Shaping Political Narratives in the Digital Age
Conservative Podcasts: Shaping Political Narratives in the Digital Age
Breaking Battlegrounds
 
Ganimatoonics Finals || QM: Agastya and Nikhil || Quark'25 || BITS Pilani, KK...
Ganimatoonics Finals || QM: Agastya and Nikhil || Quark'25 || BITS Pilani, KK...
BITS Goa Quiz Club
 
Lit Quiz Finals || QM: Shivansh Verma, Dhruba Chatterjee & Suhani Timbadia ||...
Lit Quiz Finals || QM: Shivansh Verma, Dhruba Chatterjee & Suhani Timbadia ||...
BITS Goa Quiz Club
 
Bouba and Zaza Respect Water Pitch Bible
Bouba and Zaza Respect Water Pitch Bible
AdelaHurtado
 
Past simple, present perfect or present perfect continuous
Past simple, present perfect or present perfect continuous
trucn4
 
The Other Side of the Myth: Ereshkigal and the Villainess’s Journey
The Other Side of the Myth: Ereshkigal and the Villainess’s Journey
Valerie Frankel
 
How Enzo Zelocchi Leveraged 28 Million Followers to Build a Global Brand That...
How Enzo Zelocchi Leveraged 28 Million Followers to Build a Global Brand That...
Enzo Zelocchi Fan Page
 
Lit Quiz Prelims || QM: Shivansh Verma, Dhruba Chatterjee & Suhani Timbadia |...
Lit Quiz Prelims || QM: Shivansh Verma, Dhruba Chatterjee & Suhani Timbadia |...
BITS Goa Quiz Club
 
最新版西班牙巴拿马大学毕业证(Panamá毕业证书)原版定制
最新版西班牙巴拿马大学毕业证(Panamá毕业证书)原版定制
Taqyea
 
Cybersecurity_in_Education_System_Advanced.pptx
Cybersecurity_in_Education_System_Advanced.pptx
safamanz001safa
 
Mastering-Event-Management-Creating-Unforgettable-Experiences.pdf
Mastering-Event-Management-Creating-Unforgettable-Experiences.pdf
Mosaic Live
 
feliz dia de san patricio celebrarlo como actividad
feliz dia de san patricio celebrarlo como actividad
info2025gloriamanzan
 
Reasons why basketball is my favorite hobby?
Reasons why basketball is my favorite hobby?
memi27
 
Ganimatoonics Prelims || QM: Agastya Sanyal and Nikhil Vinay || Quark'25 || B...
Ganimatoonics Prelims || QM: Agastya Sanyal and Nikhil Vinay || Quark'25 || B...
BITS Goa Quiz Club
 
Reasons why dancing iw my favorite hobby favorite hobby (2).pptx
Reasons why dancing iw my favorite hobby favorite hobby (2).pptx
memi27
 
Presentation1 bio 2.pdf This to know about my life i am rengooz.
Presentation1 bio 2.pdf This to know about my life i am rengooz.
RenGooZ SBUH
 
Ad

Reusable Cookbook Patterns