Created
November 12, 2014 04:59
-
-
Save adamenger/3da37b85a8ef3a203967 to your computer and use it in GitHub Desktop.
.kitchen.yml
This file contains hidden or 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
--- | |
driver: | |
name: vagrant | |
vm_hostname: hostname_here | |
require_chef_omnibus: "11.16.4" | |
customize: | |
cpus: 2 | |
memory: 1024 | |
network: | |
- ["private_network", {ip: "10.100.0.5"}] | |
provisioner: | |
name: chef_zero | |
platforms: | |
- name: ubuntu-14.04 | |
driver_config: | |
box: opscode_ubuntu-14.04 | |
box_url: "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-14.04_chef-provisionerless.box" | |
suites: | |
- name: default | |
run_list: | |
- recipe[base::default] | |
data_bags_path: '~/.chef/data_bags' | |
roles_path: '~/.chef/roles' | |
encrypted_data_bag_secret_key_path: '~/.chef/encrypted_data_bag_secret' | |
attributes: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment