diff options
| author | mo khan <mo@mokhan.ca> | 2015-09-12 22:30:08 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2015-09-12 22:30:08 -0600 |
| commit | e2ef4c11b5ef00b73133fe2f519a3ca6d8c60a65 (patch) | |
| tree | 39770732c063d2dbecc9743fc21aa21f277501d9 | |
| parent | c9fc4e08a49b5ba42c711df1f53de2f9ba2829ce (diff) | |
install test-kitchen.
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | .kitchen.yml | 16 | ||||
| -rw-r--r-- | chefignore | 1 |
3 files changed, 19 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..82d1b5c --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.kitchen/ +.kitchen.local.yml diff --git a/.kitchen.yml b/.kitchen.yml new file mode 100644 index 0000000..3ed0c62 --- /dev/null +++ b/.kitchen.yml @@ -0,0 +1,16 @@ +--- +driver: + name: vagrant + +provisioner: + name: chef_solo + +platforms: + - name: ubuntu-14.04 + - name: centos-7.1 + +suites: + - name: default + run_list: + - recipe[chef-talk::default] + attributes: diff --git a/chefignore b/chefignore new file mode 100644 index 0000000..7be3c6d --- /dev/null +++ b/chefignore @@ -0,0 +1 @@ +.kitchen |
