-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
48 lines (44 loc) · 1015 Bytes
/
.kitchen.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
driver:
name: vagrant
customize:
memory: 1024
provisioner:
name: chef_zero
data_bags_path: "data_bags"
environments_path: "environments"
nodes_path: "test/integration/nodes"
# To use data bags, create a secret key:
#
# openssl rand -base64 512 | tr -d '\r\n' > .databag-secret.key
#
# and uncomment the following line
# encrypted_data_bag_secret_key_path: ".databag-secret.key"
require_chef_omnibus: 11.16.4
client_rb:
environment: _default
attributes:
testkitchen: true
openssh:
server:
password_authentication: 'yes'
permit_root_login: 'yes'
authorization:
sudo:
users: ['vagrant']
passwordless: true
platformstack:
omnibus_updater:
enabled: false
iptables:
allow_ssh_from_world: true
platforms:
- name: ubuntu-14.04
suites:
# - name: default
# run_list:
# attributes:
- name: nodejs
run_list:
- recipe[cheftdd::default]
- recipe[cheftdd::nodejs]