Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Hand Crafted Artisinal Chef Resources
Search
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
someara
February 02, 2016
Technology
610
0
Share
Hand Crafted Artisinal Chef Resources
Configuration Management Camp
Ghent Belgium
February 2016
someara
February 02, 2016
More Decks by someara
See All by someara
Docker Docker Docker Chef
someara
0
530
Configuration Management Camp 2015
someara
1
580
Cookbook Reusability
someara
0
820
TDI with ChefDK 0.0.1
someara
2
890
Configuration Management 101 @ Scale12x
someara
2
930
Configuration Management 101
someara
3
810
Introduction to Chef - Scale 10x
someara
2
470
Introduction to Chef - NYLUG Jan 2012
someara
2
320
Introduction to Chef - LISA11
someara
10
6.2k
Other Decks in Technology
See All in Technology
トークン数だけでは測れない — Claude Code 組織展開の効果検証から学んだこと
makikub
0
130
Cloud Run のアップデート 触ってみる&紹介
gre212
0
310
ChatworkとBPaaS 異なる特性で学んだAI機能開発の ベストプラクティス
kubell_hr
2
2.6k
noUncheckedIndexedAccess、3時間、1万円。 / noUncheckedIndexedAccess, 3 Hours, 10,000 JPY.
kaonavi
1
290
AIガバナンス実践 - 生成AIコネクタのデータ漏洩リスクと実務対策
knishioka
0
180
Databricks 月刊サービスアップデート 2026年05月号
tyosi1212
0
200
Building applications in the Gemini API family.
line_developers_tw
PRO
0
1.1k
最低限これだけ押さえれ大丈夫_Claude Enterprise/Team企業展開ガバナンス入門
tkikuchi
1
770
「コーディング」しない人のための Claude Code 入門 ChatGPT の次の一歩 — 業務に組み込む 育成・共有・自動化
rfdnxbro
2
1.2k
正解のないAIプロダクトをどう導くか?dodaが挑む、ユーザーの『本音』を構造化する評価設計と検証のリアル
techtekt
PRO
0
180
そのPoC、何を検証したつもりでしたか? AIプロダクトの価値検証で陥った落とし穴
techtekt
PRO
0
150
PHP と TypeScript の型システム比較:AI 時代の「型」は誰のためにあるのか? #frontend_phpcon_do / frontend_phpcon_do_2026
shogogg
1
240
Featured
See All Featured
AI Search: Where Are We & What Can We Do About It?
aleyda
0
7.5k
Test your architecture with Archunit
thirion
1
2.3k
Leo the Paperboy
mayatellez
7
1.8k
Building Flexible Design Systems
yeseniaperezcruz
330
40k
Why You Should Never Use an ORM
jnunemaker
PRO
61
9.9k
Claude Code どこまでも/ Claude Code Everywhere
nwiizo
65
56k
Leveraging Curiosity to Care for An Aging Population
cassininazir
1
260
The Invisible Side of Design
smashingmag
302
52k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
34
2.8k
Building a Modern Day E-commerce SEO Strategy
aleyda
45
9.1k
Ecommerce SEO: The Keys for Success Now & Beyond - #SERPConf2024
aleyda
1
2k
The Director’s Chair: Orchestrating AI for Truly Effective Learning
tmiket
1
180
Transcript
Hand Crafted Artisanal Chef Resources
Config Management Camp Ghent, Belgium February 2016
Sean OMeara
[email protected]
@someara
whoami
Part 1
Writing library cookbooks An opinionated workflow Step by step
Step 1 - Disregard dogma “Unit tests first” is a
dirty lie https://flic.kr/p/aTSiXF
Step 2 - Make things up Then work backwards https://flic.kr/p/dXkQ5s
Contrived examples are the best examples
None
Place this off to the side, we will come back
for it later.
Step 3 - Create a cookbook By hand. Be a
wizard. https://flic.kr/p/3mMW6e
mkdir -p ~/src/custom-resources-tutorial cd ~/src/custom-resources-tutorial emacs metadata.rb
None
Step 4 - Embed a test cookbook. By hand. Be
a wizard. Again. https://flic.kr/p/ai36NG
mkdir -p test/cookbooks/my_file_test cd test/cookbooks/my_file_test echo “test cookbook” > README.md
mkdir recipes touch recipes/default.rb emacs metadata.rb
None
Step 5 - Tell Berkshelf about it https://flic.kr/p/k5jmja
cd ~/src/custom-resources-tutorial emacs Berksfile
None
Step 6 - Configure Test Kitchen https://flic.kr/p/r38F5c
emacs .kitchen.yml
None
kitchen test ; echo $?
Step 7 - Save game https://flic.kr/p/6ZJ4G7
cd ~/src/custom-resources-tutorial cp ~/src/chef-cookbooks/docker/.gitignore . cp ~/src/chef-cookbooks/docker/.rubocop.yml .
rubocop -a git init git add . git commit -a
-m 'v0.0.1 - cookbook skeleton' git tag v0.0.1
Step 8 - Use resource in test recipe https://flic.kr/p/8MuUAX
emacs test/cookbooks/my_file_test/recipes/ default.rb
None
kitchen converge ; echo $?
Step 9 - Implement resource https://flic.kr/p/bkVKRb
cd ~/src/custom-resources-tutorial mkdir libraries emacs libraries/my_file.rb
None
kitchen converge ; echo $? kitchen converge ; echo $?
Step 10 - Test for behavior https://i.ytimg.com/vi/1y8Rqvz-Jcg/ maxresdefault.jpgz
mkdir -p test/integration/my_file/inspec emacs -p test/integration/my_file/inspec/ run_spec.rb
None
kitchen verify ; echo $?
Step 11 - Add specs and commit https://flic.kr/p/rrgfZh
cd ~/src/custom-resources-tutorial mkdir spec emacs spec/spec_helper.rb
None
emacs spec/my_file_spec.rb
None
rubocop -a rspec ; echo $? git add . git
commit -a -m “v0.1.0 - my_file resource” git tag v0.1.0
stove 0.1.0
Step 12 - Iterate indefinitely https://flic.kr/p/8Ny8Jt
Congratulations, you have now written one software.
You must now maintain it forever.
muahaha.
None
Part 2
Custom Resources Tips and Tricks
Be explicit https://flic.kr/p/pz1JAo
None
None
None
None
Converge twice during development Use markers for “negative” actions https://flic.kr/p/pqwd5U
None
None
Tests let you refactor with confidence https://flic.kr/p/4WnjM4
None
STAR WIPE
None
Pure Ruby resources https://flic.kr/p/5km2fM
Pure Ruby resources utilize - The Ruby Standard Library -
Chef helper libs (mixlib-shellout) - Ruby gems
None
It might make sense to vendor gems
load_current_value - Runs at converge time - Just before the
action body - Loads desired state values
None
converge_if_changed - Runs if any desired_state: true property differs from
user input - desired_state: false avoids comparison
None
coerce transforms values - Called when property is set -
Called when property is read - Use this to raise errors on bad input
The docker_container resource uses coercion heavily https://github.com/chef-cookbooks/ docker/blob/master/libraries/ docker_container.rb
lazy defaults - Delays evaluation until used - Useful for
calculated values
None
Composite resources https://flic.kr/p/fm58oo
Composite resources - Reuse Chef resources - Actions look like
recipes - Do not use load_current_value
etcd_installation_binary :create
httpd_config_rhel :create
Avoid leaky abstractions https://flic.kr/p/7d1kDc
Resources should be minimalist
Early versions might be simple
None
They rarely stay that way
Iterate and add more features Break down into smaller resources
Use naming semantics to describe strategy
etcd_installation_binary etcd_installation_docker etcd_installation_package etcd_service_manager_docker etcd_service_manager_execute etcd_service_manager_systemd etcd_service_manager_sysvinit etcd_service_manager_upstart
Recycle patterns as they emerge
docker_installation_binary docker_installation_package docker_installation_script docker_service_manager_execute docker_service_manager_systemd docker_service_manager_sysvinit docker_service_manager_upstart
Chef selects defaults with the provider resolution system
…
…
Compose resources Most specific to least specific
None
Enjoy
fin