Skip to content

Instantly share code, notes, and snippets.

@juanje
Created November 1, 2011 13:27
Show Gist options
  • Save juanje/1330492 to your computer and use it in GitHub Desktop.
Save juanje/1330492 to your computer and use it in GitHub Desktop.
Vagrant and Chef stuff
vagrant init ubuntu-11.04-server
# configure Vagrantfile (next file)
vagrant up
# install some cookbooks and re-run provisions
vagrant provision
knife cookbook site install vim
knife cookbook upload vim
knife node run_list add vagrant-vm vim
# Vagrantfile for node: vagrant-vm
Vagrant::Config.run do |config|
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "ubuntu-11.04-server"
# The Opscode Platform uses HTTPS. Substitute your organization for
# ORGNAME in the URL and validation key.
#
config.vm.provision :chef_client do |chef|
chef.chef_server_url = "https://api.opscode.com/organizations/ORGNAME"
chef.validation_key_path = "ORGNAME-validator.pem"
chef.validation_client_name = "ORGNAME-validator"
end
#
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment