Created
November 1, 2011 13:27
-
-
Save juanje/1330492 to your computer and use it in GitHub Desktop.
Vagrant and Chef stuff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vagrant init ubuntu-11.04-server | |
# configure Vagrantfile (next file) | |
vagrant up | |
# install some cookbooks and re-run provisions | |
vagrant provision | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
knife cookbook site install vim | |
knife cookbook upload vim | |
knife node run_list add vagrant-vm vim |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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