Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up for free
Use Datacenter Tools to Make Your Dev Life Easier
Jochen Lillich
PRO
August 23, 2012
Programming
0
84
Use Datacenter Tools to Make Your Dev Life Easier
Talk at DrupalCon Munich 2012 about using Chef and Vagrant in a development environment
Jochen Lillich
PRO
August 23, 2012
Tweet
Share
More Decks by Jochen Lillich
See All by Jochen Lillich
Under Pressure
geewiz
PRO
0
32
Monorepo vs Multirepo
geewiz
PRO
0
13
Dealing with IRQ conflicts in 2018
geewiz
PRO
0
36
Planning for the Unpredictable
geewiz
PRO
0
90
Captaining a Container Ship
geewiz
PRO
0
39
Content - Culture - Community
geewiz
PRO
0
150
Drupal on Docker
geewiz
PRO
0
130
Getting the most out of Varnish (DrupalCamp Galway 2014)
geewiz
PRO
0
160
DevOps with Drupal
geewiz
PRO
0
130
Other Decks in Programming
See All in Programming
What's new in Android development tools まとめ
mkeeda
0
190
EFFICIENT CREATION OF AN EMPTY COLLECTION IN .NET
abt
0
150
設計ナイト2022 トランザクションスクリプト
shinpeim
11
2k
Git・Git-Flowについて
nerusan_main
0
400
Custom Design Systems in Compose UI
rharter
5
510
Treasure.map(): Functional programming in JVM-based languages
paranoidmonoid
0
130
JetPackComposeは宣言型プログラミングパラダイムって実はよくわかってないんですが、別に使ってもいいんですよね、
conigashima
0
170
ANR overview at Uber + Leveraging ApplicationExitInfo API
yhartanto
0
320
Amazon ECSのネットワーク関連コストの話
msato
0
610
VisualProgramming_GoogleHome_LINE
nearmugi
1
140
Power Automateドリブンのチームマネジメント
hanaseleb
0
180
Value and Record Types
hschwentner
0
540
Featured
See All Featured
Six Lessons from altMBA
skipperchong
14
1.4k
Done Done
chrislema
174
14k
Building Flexible Design Systems
yeseniaperezcruz
310
34k
Art, The Web, and Tiny UX
lynnandtonic
280
17k
The Invisible Customer
myddelton
110
11k
Web development in the modern age
philhawksworth
197
9.3k
How GitHub (no longer) Works
holman
296
140k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
7
1.1k
Embracing the Ebb and Flow
colly
73
3.4k
Fashionably flexible responsive web design (full day workshop)
malarkey
396
62k
Become a Pro
speakerdeck
PRO
3
820
The World Runs on Bad Software
bkeepers
PRO
57
5.3k
Transcript
freistil.it Use datacenter tools to make your dev life easier
Jochen Lillich
About me
Jochen Lillich @geewiz * 1970 Linux Sysadmin & Trainer IT
Manager at WEB.DE, 1&1 Founder & CTO at freistil IT
freistil IT http://freistil.it @freistil “Ops for Devs” DrupalCONCEPT: Drupal IaaS
Challenge... Local development environments Manual configuration effort Mismatched software versions
Long onboarding times
...accepted! Minimize setup time Make Development = Production Reproduce setup
consistently on demand
Vagrant
“Vagrant uses Oracle’s VirtualBox to build configurable, lightweight, and portable
virtual machines dynamically.” http://vagrantup.com
$ gem install vagrant $ vagrant box add precise64 http://
files.vagrantup.com/precise64.box $ cd ~/myvm $ vagrant init precise64 $ vagrant up $ vagrant ssh Instant VM
Pre-installed OS Available from http://files.vagrantup.com Box
Box – Management $ vagrant box -h $ vagrant package
-h
Box – DIY VeeWee by Patrick Dubois https://github.com/jedi4ever/veewee
Vagrantfile Ruby DSL for VM configuration Can be used for
many VMs
Vagrant::Config.run do |config| config.vm.box = "precise64" config.vm.boot_mode = :gui config.vm.forward_port
80, 8080 end Vagrantfile
“Well, I’ve been doing that for ages with snapshots/ images/other...”
None
“No matter how complex the realities of your business, Chef
makes it easy to deploy servers and scale applications throughout your entire infrastructure.” http://www.opscode.com/chef/
Ruby DSL for system administration tasks Makes only necessary changes
(Idempotence) CM with Chef
Infrastructure as Code Cookbooks Recipes Resources Providers Nodes Attributes Roles
Resources Package Service File, Directory Template Command, Script Cron Git
...
Example package ”apache2” do action :install end service ”apache2” do
action [:enable, :start] end
Example (cont.) template ”/etc/apache2/apache2.conf” do source ”apache2.conf.erb” owner ”root” group
”root” mode 0644 notifies ”reload”, ”service[apache2]” end
Community sites http://wiki.opscode.com http://community.opscode.com http://github.com/opscode-cookbooks
+
Installation $ gem install librarian $ cd ~/myvm $ librarian-chef
init $ $EDITOR Cheffile $ librarian-chef install
Cheffile site ”http://community.opscode.com/api/v1” cookbook ’apache2’ cookbook ’php’ cookbook ’mysql’
roles/drupal.rb name "drupal" description "Drupal dev VM" run_list( "recipe[apache2]", "recipe[apache2::mod_expires]",
"recipe[apache2::mod_rewrite]", "recipe[apache2::mod_php5]", "recipe[php]", "recipe[php::module_mysql]", "recipe[mysql::client]", "recipe[mysql::server]" )
Vagrantfile config.vm.provision :chef_solo do |chef| chef.cookbooks_path = ”cookbooks” chef.roles_path =
”roles” chef.add_role ”drupal-dev” end
Kitchen magic $ vagrant provision
Now do some awesome stuff!
And finally... $ vagrant destroy
Tips Keep all building blocks local: Cache packages Store your
own base boxes Use a central cookbook repository
Conclusion Combining Vagrant and Chef gives us: Dedicated, consistent, disposable
dev setups Efficient onboarding of new devs
Thank you! Please rate my session: http://bit.ly/dc12chef