-
Notifications
You must be signed in to change notification settings - Fork 11
/
.kitchen.yml
66 lines (64 loc) · 1.55 KB
/
.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
customize:
memory: 4096
cpuexecutioncap: 50
platforms:
- name: ubuntu-12.04
suites:
- name: default
run_list:
- recipe[test_drupal]
- recipe[drupal]
- name: redis
run_list:
- recipe[test_drupal]
- recipe[drupal::redis]
- name: dbag
run_list:
- recipe[test_drupal]
- recipe[drupal::dbag]
- name: mass_virtual
run_list:
- recipe[drupal::mass_virtual]
- recipe[test_drupal::tar]
- role[db_master]
data_bags_path: test/fixtures/data_bags
roles_path: test/fixtures/roles
attributes:
drupal:
data_bag_items: default
mysql:
server_debian_password: heywhatasweetpass
server_root_password: heywhatasweetpass
server_repl_password: heywhatasweetpass
- name: node_sites
run_list:
- recipe[test_drupal]
- recipe[drupal::node_sites]
attributes:
drupal:
sites:
foo.net:
root: /var/drupals/foo
owner: vagrant
- name: redis_mysql
run_list:
- recipe[test_drupal]
- role[db_master]
- recipe[test_drupal::tar]
- recipe[drupal::dbag]
- recipe[drupal::redis]
attributes:
drupal:
data_bag_items:
- foo
roles_path: test/fixtures/roles
data_bags_path: test/fixtures/data_bags
attributes:
mysql:
server_debian_password: heywhatasweetpass
server_root_password: heywhatasweetpass
server_repl_password: heywhatasweetpass