ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Chef Study Meeting in
NNCT
2015/06/29
Created by /Kazutaka Matsumoto @udon_papapa
Outline
What's Chef
Tutorial Chef
Beginner Chef Antipatterns
Chef Environment Cookbook Pattern
What's Chef
Chef 1/2
,
Chef 2/2
Cookbook
Chef Cookbook
Comunity Cookbook
supermarket Github Cookbook
node
node
LWRP(lightweight resource and provider)
.
Chef
Chef Server Chef Solo 2
Chef Server Chef Client
2014 localmode
Chef Solo
localmode
Chef Solo Chef Server localmode
Knife
Chef ssh
Knife Chef
Knife-Solo Knife-Zero
Knife Solo Knife Zero
Berks
Chef cookbook
Gem Chef
Berks
Jamie Winsor
....
Chef Solo
Tutorial Chef
Click
Chef ?
Chef ?
Chef
Chef
Chef Tutorial
Chef
Chef
Chef
1. Vagrant
2. Chef
3. Knife Solo
4.
Vagrant
Shell
$ mkdir temp && cd temp
$ vagrant init
$ vim Vagrantfile
$ vagrant up
$ vagrant ssh-config >> ~/.ssh/config # ½Ó¾AÏÈdefault¤ÈÃû³Æ¤Çconfig¥Õ¥¡¥¤¥ë¤¬×÷³É¤µ¤ì
$ ssh default # ¤³¤ì¤ÇÆð„ӤǤ­¤¿?
Vagrantfile
Vagrant.configure(2) do |config|
config.vm.box = "Debian_7.8.0" # ­h¾³¤ËºÏ¤ï¤»¤Æ¤¯¤À¤µ¤¤
config.vm.box_url = "https://github.com/kraksoft/vagrant-box-debian/releases/do
Chef
Shell
$ knife configure # ³õÆÚÔO¶¨ »ù±¾¥¨¥ó¥¿©`ßB´ò
$ knife solo init . # Chef Repository¤Î×÷³É
$ knife solo prepare default # default¤ËChef¤ò¥¤¥ó¥¹¥È©`¥ë¤¹¤ë
--- less¤È¤¤¤¦¥Ç¥£¥ì¥¯¥È¥ê¤ÇCookbook¤Î¥Æ¥ó¥×¥ì©`¥È×÷³É
$ knife cookbook create vim -o site-cookbooks
--- »ù±¾¤Ï£¬Recipes¤ÎÖФÎdefault.rb¤ò¾Ž¼¯¤·¤Þ¤¹
$ vim site-cookbooks/vim/recipes/default.rb
vim/default.rb
package 'vim' do
action :install
end
Shell
--- ¥µ©`¥Ð¤ËßmÓ乤ëChef¤ò¾Ž¼¯¤·¤Þ¤¹
$ vim nodes/default.json
$ knife solo cook default # default¤ËRecipe¤òßmÓ乤ë
--- ´_ÕJ¤·¤Æ¤ß¤è¤¦
$ ssh default
# vim
nodes/default.json
"run_list": [
"recipe[vim]"
]
:Chef Repository
©À©¤©¤ Berksfile # ¤¤¤ï¤º¤â¤¬¤Ê
©À©¤©¤ cookbooks # Community Cookbook¤òÈë¤ì¤ë
©À©¤©¤ data_bags # °µºÅ»¯¤·¤¿¤¤¥Õ¥¡¥¤¥ëµÈ¤Ï¤³¤³¤Ç’Q¤¦
©À©¤©¤ environments # ¥µ©`¥Ð¤ËßmÓ乤ëÔO¶¨µÈ¤òÓ›Êö
©À©¤©¤ nodes # ¥µ©`¥Ðš°¤ËßmÓ乤ërecipe¤äroles¤¬¤«¤«¤ì¤Æ¤¤¤ë
©À©¤©¤ roles # recipe¤òÒ»À¨¤ÇŒgÐФǤ­¤ë£®±»ÍÆŠX
©¸©¤©¤ site-cookbooks # ×Ô×÷Cookbook¤òÈë¤ì¤ë
:Chef Cookbook
©À©¤©¤ CHANGELOG.md
©À©¤©¤ README.md
©À©¤©¤ attributes # Cookbook¤Î¥Ç¥Õ¥©¥ë¥È‚Ž¤òÔO¶¨¤¹¤ë
©À©¤©¤ definitions # Recipe¤È¤Û¤Üͬ¤¸(µ«¤·‰äÊý¤ò’Q¤¨¤ë
©À©¤©¤ files # ¾²µÄ¥Õ¥¡¥¤¥ë¤ò’Q¤¦
©¦ ©¸©¤©¤ default
©À©¤©¤ libraries # LWRP¤ò’Q¤¦?
©À©¤©¤ metadata.rb
©À©¤©¤ providers # LWRP¤ò’Q¤¦?
©À©¤©¤ recipes # ¥ì¥·¥Ô¤ò•ø¤¯
©¦ ©¸©¤©¤ default.rb
©À©¤©¤ resources # Ìõ¼þʽ¤ä¥¢¥¯¥·¥ç¥ó¤ò•ø¤¯
©¸©¤©¤ templates # template¥Õ¥¡¥¤¥ë¤ò’Q¤¦
©¸©¤©¤ default
Chef !
Beginner Chef
Antipatterns
Chef
Chef
Chef
Chef 1 Git
Community Cookbook
NIH ( )
Chef
Chef 1
Git
cookbooks
Git :
Git
Git
Chef 1
Git
Cookbook Repository Berks
Community Cookbook
(
)
Community Cookbook
Attirbute
NIH(Not Invented Here) (
)
...
Cookbook
NIH(Not Invented Here) (
)
Chef
Chef Environment
Cookbook Pattern
Chef Cookbook Chef Environment
Cookbook Pattern
Chef Environement Cookbook Pattern
Cookbook
1. Library Cookbook
2. Application Cookbook
3. Wrapper Cookbook
4. Base Cookbook
5. Environment Cookbook
Library Cookbook
cookbook
cookbook
Recipe
LWRP( package)
:
github-cookbook
github API LWRP Cookbook
Application Cookbook
cookbook
vim git
install Cookbook
1 1Cookbook
attribute
Wrapper Cookbook
Application cookbook wrap
cookbook
Application cookbook
cookbook { }-{wrap cookbook}
{ }-{wrap cookbook}
Community Cookbook
Base cookbook
cookbook
bash zsh
cookbook { }-base
Environment cookbook
cookbook
Cookbook
1 1cookbook
Cookbook Berks Cookbookk
import
The Environment Cookbook Pattern Cookbook

More Related Content

Similar to Chef (20)

Chef Workshop: Setup Environment with Chef,Vagrant, and Berkshelf
Chef Workshop: Setup Environment with Chef,Vagrant, and BerkshelfChef Workshop: Setup Environment with Chef,Vagrant, and Berkshelf
Chef Workshop: Setup Environment with Chef,Vagrant, and Berkshelf
Jun Sakata
?
Using Vagrant
Using VagrantUsing Vagrant
Using Vagrant
andygale
?
Testing your-automation-code (vagrant version) v0.2
Testing your-automation-code (vagrant version) v0.2Testing your-automation-code (vagrant version) v0.2
Testing your-automation-code (vagrant version) v0.2
Sylvain Tissot
?
Eucalyptus calendar 20141221
Eucalyptus calendar 20141221Eucalyptus calendar 20141221
Eucalyptus calendar 20141221
samemoon
?
Vagrant - Version control your dev environment
Vagrant - Version control your dev environmentVagrant - Version control your dev environment
Vagrant - Version control your dev environment
bocribbz
?
Open stack and_vagrant-os-meetup-2015
Open stack and_vagrant-os-meetup-2015Open stack and_vagrant-os-meetup-2015
Open stack and_vagrant-os-meetup-2015
yfauser
?
Cooking Perl with Chef: Real World Tutorial with Jitterbug
Cooking Perl with Chef: Real World Tutorial with JitterbugCooking Perl with Chef: Real World Tutorial with Jitterbug
Cooking Perl with Chef: Real World Tutorial with Jitterbug
David Golden
?
Chef
ChefChef
Chef
Will Sterling
?
The Berkshelf Way
The Berkshelf WayThe Berkshelf Way
The Berkshelf Way
Chef Software, Inc.
?
Cookbook testing with KitcenCI and Serverrspec
Cookbook testing with KitcenCI and ServerrspecCookbook testing with KitcenCI and Serverrspec
Cookbook testing with KitcenCI and Serverrspec
Daniel Paulus
?
Cloud Automation with Opscode Chef
Cloud Automation with Opscode ChefCloud Automation with Opscode Chef
Cloud Automation with Opscode Chef
Sri Ram
?
Environments line-up! Vagrant & Puppet 101
Environments line-up! Vagrant & Puppet 101Environments line-up! Vagrant & Puppet 101
Environments line-up! Vagrant & Puppet 101
jelrikvh
?
Getting started with Vagrant
Getting started with VagrantGetting started with Vagrant
Getting started with Vagrant
Guillermo Guerrero Ibarra
?
Cooking with Chef
Cooking with ChefCooking with Chef
Cooking with Chef
Ken Robertson
?
Vagrant introduction for Developers
Vagrant introduction for DevelopersVagrant introduction for Developers
Vagrant introduction for Developers
Antons Kranga
?
Head in the Clouds: Testing Infra as Code - Config Management 2020
Head in the Clouds: Testing Infra as Code - Config Management 2020Head in the Clouds: Testing Infra as Code - Config Management 2020
Head in the Clouds: Testing Infra as Code - Config Management 2020
Peter Souter
?
Test Driven Development with Chef
Test Driven Development with ChefTest Driven Development with Chef
Test Driven Development with Chef
Simone Soldateschi
?
Kickstarter - Chef Opswork
Kickstarter - Chef OpsworkKickstarter - Chef Opswork
Kickstarter - Chef Opswork
Hamza Waqas
?
CapistranoÓëjenkins(hudson)ÔÚjava webÏîÄ¿ÖеÄʵ¼ù
CapistranoÓëjenkins(hudson)ÔÚjava webÏîÄ¿ÖеÄʵ¼ùCapistranoÓëjenkins(hudson)ÔÚjava webÏîÄ¿ÖеÄʵ¼ù
CapistranoÓëjenkins(hudson)ÔÚjava webÏîÄ¿ÖеÄʵ¼ù
crazycode t
?
The Berkshelf Way
The Berkshelf WayThe Berkshelf Way
The Berkshelf Way
Jamie Winsor
?
Chef Workshop: Setup Environment with Chef,Vagrant, and Berkshelf
Chef Workshop: Setup Environment with Chef,Vagrant, and BerkshelfChef Workshop: Setup Environment with Chef,Vagrant, and Berkshelf
Chef Workshop: Setup Environment with Chef,Vagrant, and Berkshelf
Jun Sakata
?
Using Vagrant
Using VagrantUsing Vagrant
Using Vagrant
andygale
?
Testing your-automation-code (vagrant version) v0.2
Testing your-automation-code (vagrant version) v0.2Testing your-automation-code (vagrant version) v0.2
Testing your-automation-code (vagrant version) v0.2
Sylvain Tissot
?
Eucalyptus calendar 20141221
Eucalyptus calendar 20141221Eucalyptus calendar 20141221
Eucalyptus calendar 20141221
samemoon
?
Vagrant - Version control your dev environment
Vagrant - Version control your dev environmentVagrant - Version control your dev environment
Vagrant - Version control your dev environment
bocribbz
?
Open stack and_vagrant-os-meetup-2015
Open stack and_vagrant-os-meetup-2015Open stack and_vagrant-os-meetup-2015
Open stack and_vagrant-os-meetup-2015
yfauser
?
Cooking Perl with Chef: Real World Tutorial with Jitterbug
Cooking Perl with Chef: Real World Tutorial with JitterbugCooking Perl with Chef: Real World Tutorial with Jitterbug
Cooking Perl with Chef: Real World Tutorial with Jitterbug
David Golden
?
Cookbook testing with KitcenCI and Serverrspec
Cookbook testing with KitcenCI and ServerrspecCookbook testing with KitcenCI and Serverrspec
Cookbook testing with KitcenCI and Serverrspec
Daniel Paulus
?
Cloud Automation with Opscode Chef
Cloud Automation with Opscode ChefCloud Automation with Opscode Chef
Cloud Automation with Opscode Chef
Sri Ram
?
Environments line-up! Vagrant & Puppet 101
Environments line-up! Vagrant & Puppet 101Environments line-up! Vagrant & Puppet 101
Environments line-up! Vagrant & Puppet 101
jelrikvh
?
Vagrant introduction for Developers
Vagrant introduction for DevelopersVagrant introduction for Developers
Vagrant introduction for Developers
Antons Kranga
?
Head in the Clouds: Testing Infra as Code - Config Management 2020
Head in the Clouds: Testing Infra as Code - Config Management 2020Head in the Clouds: Testing Infra as Code - Config Management 2020
Head in the Clouds: Testing Infra as Code - Config Management 2020
Peter Souter
?
Test Driven Development with Chef
Test Driven Development with ChefTest Driven Development with Chef
Test Driven Development with Chef
Simone Soldateschi
?
Kickstarter - Chef Opswork
Kickstarter - Chef OpsworkKickstarter - Chef Opswork
Kickstarter - Chef Opswork
Hamza Waqas
?
CapistranoÓëjenkins(hudson)ÔÚjava webÏîÄ¿ÖеÄʵ¼ù
CapistranoÓëjenkins(hudson)ÔÚjava webÏîÄ¿ÖеÄʵ¼ùCapistranoÓëjenkins(hudson)ÔÚjava webÏîÄ¿ÖеÄʵ¼ù
CapistranoÓëjenkins(hudson)ÔÚjava webÏîÄ¿ÖеÄʵ¼ù
crazycode t
?

Recently uploaded (20)

CS3451-OPERATING-SYSTEM NOTES ALL123.pdf
CS3451-OPERATING-SYSTEM NOTES ALL123.pdfCS3451-OPERATING-SYSTEM NOTES ALL123.pdf
CS3451-OPERATING-SYSTEM NOTES ALL123.pdf
PonniS7
?
Industrial Valves, Instruments Products Profile
Industrial Valves, Instruments Products ProfileIndustrial Valves, Instruments Products Profile
Industrial Valves, Instruments Products Profile
zebcoeng
?
Embedded System intro Embedded System intro.ppt
Embedded System intro Embedded System intro.pptEmbedded System intro Embedded System intro.ppt
Embedded System intro Embedded System intro.ppt
23ucc580
?
Lecture -3 Cold water supply system.pptx
Lecture -3 Cold water supply system.pptxLecture -3 Cold water supply system.pptx
Lecture -3 Cold water supply system.pptx
rabiaatif2
?
UNIT 1FUNDAMENTALS OF OPERATING SYSTEMS.pptx
UNIT 1FUNDAMENTALS OF OPERATING SYSTEMS.pptxUNIT 1FUNDAMENTALS OF OPERATING SYSTEMS.pptx
UNIT 1FUNDAMENTALS OF OPERATING SYSTEMS.pptx
KesavanT10
?
Integration of Additive Manufacturing (AM) with IoT : A Smart Manufacturing A...
Integration of Additive Manufacturing (AM) with IoT : A Smart Manufacturing A...Integration of Additive Manufacturing (AM) with IoT : A Smart Manufacturing A...
Integration of Additive Manufacturing (AM) with IoT : A Smart Manufacturing A...
ASHISHDESAI85
?
Structural QA/QC Inspection in KRP 401600 | Copper Processing Plant-3 (MOF-3)...
Structural QA/QC Inspection in KRP 401600 | Copper Processing Plant-3 (MOF-3)...Structural QA/QC Inspection in KRP 401600 | Copper Processing Plant-3 (MOF-3)...
Structural QA/QC Inspection in KRP 401600 | Copper Processing Plant-3 (MOF-3)...
slayshadow705
?
US Patented ReGenX Generator, ReGen-X Quatum Motor EV Regenerative Accelerati...
US Patented ReGenX Generator, ReGen-X Quatum Motor EV Regenerative Accelerati...US Patented ReGenX Generator, ReGen-X Quatum Motor EV Regenerative Accelerati...
US Patented ReGenX Generator, ReGen-X Quatum Motor EV Regenerative Accelerati...
Thane Heins NOBEL PRIZE WINNING ENERGY RESEARCHER
?
Cyber Security_ Protecting the Digital World.pptx
Cyber Security_ Protecting the Digital World.pptxCyber Security_ Protecting the Digital World.pptx
Cyber Security_ Protecting the Digital World.pptx
Harshith A S
?
decarbonization steel industry rev1.pptx
decarbonization steel industry rev1.pptxdecarbonization steel industry rev1.pptx
decarbonization steel industry rev1.pptx
gonzalezolabarriaped
?
Water Industry Process Automation & Control Monthly - March 2025.pdf
Water Industry Process Automation & Control Monthly - March 2025.pdfWater Industry Process Automation & Control Monthly - March 2025.pdf
Water Industry Process Automation & Control Monthly - March 2025.pdf
Water Industry Process Automation & Control
?
Cloud Computing concepts and technologies
Cloud Computing concepts and technologiesCloud Computing concepts and technologies
Cloud Computing concepts and technologies
ssuser4c9444
?
RAMSES- EDITORIAL SAMPLE FOR DSSPC C.pptx
RAMSES- EDITORIAL SAMPLE FOR DSSPC C.pptxRAMSES- EDITORIAL SAMPLE FOR DSSPC C.pptx
RAMSES- EDITORIAL SAMPLE FOR DSSPC C.pptx
JenTeruel1
?
Soil Properties and Methods of Determination
Soil Properties and  Methods of DeterminationSoil Properties and  Methods of Determination
Soil Properties and Methods of Determination
Rajani Vyawahare
?
Air pollution is contamination of the indoor or outdoor environment by any ch...
Air pollution is contamination of the indoor or outdoor environment by any ch...Air pollution is contamination of the indoor or outdoor environment by any ch...
Air pollution is contamination of the indoor or outdoor environment by any ch...
dhanashree78
?
Equipment for Gas Metal Arc Welding Process
Equipment for Gas Metal Arc Welding ProcessEquipment for Gas Metal Arc Welding Process
Equipment for Gas Metal Arc Welding Process
AhmadKamil87
?
Optimization of Cumulative Energy, Exergy Consumption and Environmental Life ...
Optimization of Cumulative Energy, Exergy Consumption and Environmental Life ...Optimization of Cumulative Energy, Exergy Consumption and Environmental Life ...
Optimization of Cumulative Energy, Exergy Consumption and Environmental Life ...
J. Agricultural Machinery
?
Taykon-Kalite belgeleri
Taykon-Kalite belgeleriTaykon-Kalite belgeleri
Taykon-Kalite belgeleri
TAYKON
?
Multi objective genetic approach with Ranking
Multi objective genetic approach with RankingMulti objective genetic approach with Ranking
Multi objective genetic approach with Ranking
namisha18
?
Mathematics_behind_machine_learning_INT255.pptx
Mathematics_behind_machine_learning_INT255.pptxMathematics_behind_machine_learning_INT255.pptx
Mathematics_behind_machine_learning_INT255.pptx
ppkmurthy2006
?
CS3451-OPERATING-SYSTEM NOTES ALL123.pdf
CS3451-OPERATING-SYSTEM NOTES ALL123.pdfCS3451-OPERATING-SYSTEM NOTES ALL123.pdf
CS3451-OPERATING-SYSTEM NOTES ALL123.pdf
PonniS7
?
Industrial Valves, Instruments Products Profile
Industrial Valves, Instruments Products ProfileIndustrial Valves, Instruments Products Profile
Industrial Valves, Instruments Products Profile
zebcoeng
?
Embedded System intro Embedded System intro.ppt
Embedded System intro Embedded System intro.pptEmbedded System intro Embedded System intro.ppt
Embedded System intro Embedded System intro.ppt
23ucc580
?
Lecture -3 Cold water supply system.pptx
Lecture -3 Cold water supply system.pptxLecture -3 Cold water supply system.pptx
Lecture -3 Cold water supply system.pptx
rabiaatif2
?
UNIT 1FUNDAMENTALS OF OPERATING SYSTEMS.pptx
UNIT 1FUNDAMENTALS OF OPERATING SYSTEMS.pptxUNIT 1FUNDAMENTALS OF OPERATING SYSTEMS.pptx
UNIT 1FUNDAMENTALS OF OPERATING SYSTEMS.pptx
KesavanT10
?
Integration of Additive Manufacturing (AM) with IoT : A Smart Manufacturing A...
Integration of Additive Manufacturing (AM) with IoT : A Smart Manufacturing A...Integration of Additive Manufacturing (AM) with IoT : A Smart Manufacturing A...
Integration of Additive Manufacturing (AM) with IoT : A Smart Manufacturing A...
ASHISHDESAI85
?
Structural QA/QC Inspection in KRP 401600 | Copper Processing Plant-3 (MOF-3)...
Structural QA/QC Inspection in KRP 401600 | Copper Processing Plant-3 (MOF-3)...Structural QA/QC Inspection in KRP 401600 | Copper Processing Plant-3 (MOF-3)...
Structural QA/QC Inspection in KRP 401600 | Copper Processing Plant-3 (MOF-3)...
slayshadow705
?
Cyber Security_ Protecting the Digital World.pptx
Cyber Security_ Protecting the Digital World.pptxCyber Security_ Protecting the Digital World.pptx
Cyber Security_ Protecting the Digital World.pptx
Harshith A S
?
decarbonization steel industry rev1.pptx
decarbonization steel industry rev1.pptxdecarbonization steel industry rev1.pptx
decarbonization steel industry rev1.pptx
gonzalezolabarriaped
?
Cloud Computing concepts and technologies
Cloud Computing concepts and technologiesCloud Computing concepts and technologies
Cloud Computing concepts and technologies
ssuser4c9444
?
RAMSES- EDITORIAL SAMPLE FOR DSSPC C.pptx
RAMSES- EDITORIAL SAMPLE FOR DSSPC C.pptxRAMSES- EDITORIAL SAMPLE FOR DSSPC C.pptx
RAMSES- EDITORIAL SAMPLE FOR DSSPC C.pptx
JenTeruel1
?
Soil Properties and Methods of Determination
Soil Properties and  Methods of DeterminationSoil Properties and  Methods of Determination
Soil Properties and Methods of Determination
Rajani Vyawahare
?
Air pollution is contamination of the indoor or outdoor environment by any ch...
Air pollution is contamination of the indoor or outdoor environment by any ch...Air pollution is contamination of the indoor or outdoor environment by any ch...
Air pollution is contamination of the indoor or outdoor environment by any ch...
dhanashree78
?
Equipment for Gas Metal Arc Welding Process
Equipment for Gas Metal Arc Welding ProcessEquipment for Gas Metal Arc Welding Process
Equipment for Gas Metal Arc Welding Process
AhmadKamil87
?
Optimization of Cumulative Energy, Exergy Consumption and Environmental Life ...
Optimization of Cumulative Energy, Exergy Consumption and Environmental Life ...Optimization of Cumulative Energy, Exergy Consumption and Environmental Life ...
Optimization of Cumulative Energy, Exergy Consumption and Environmental Life ...
J. Agricultural Machinery
?
Taykon-Kalite belgeleri
Taykon-Kalite belgeleriTaykon-Kalite belgeleri
Taykon-Kalite belgeleri
TAYKON
?
Multi objective genetic approach with Ranking
Multi objective genetic approach with RankingMulti objective genetic approach with Ranking
Multi objective genetic approach with Ranking
namisha18
?
Mathematics_behind_machine_learning_INT255.pptx
Mathematics_behind_machine_learning_INT255.pptxMathematics_behind_machine_learning_INT255.pptx
Mathematics_behind_machine_learning_INT255.pptx
ppkmurthy2006
?

Chef