chef-ec2
chef-ec2 copied to clipboard
Rake tasks and directory organisation to bootstrap and configure an EC2 instance using Chef.
trafficstars
Chef solo starter pack
Before you start, make sure that you've fetched the cookbooks submodule: $ git submodule init $ git submodule update
In the instructions below replace $SERVER with the hostname of the instance, which will be something like 'ec2-174-129-96-38.compute-1.amazonaws.com'.
-
Start an EC2 instance running Ubuntu (I used Jaunty 9.04 Server from http://alestic.com/) You'll need to add the appropriate key to your ssh-agent:
ssh-add /home/your_name/.ssh/you_private_key
-
Bootstrap chef: $ rake bootstrap SERVER=$SERVER
-
Edit your cookbook and DNA. The DNA for each server is held in dna/$SERVER.json
-
Update: $ rake update SERVER=$SERVER
-
GOTO 3