-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.kitchen.yml
72 lines (69 loc) · 1.88 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
67
68
69
70
71
72
---
driver:
name: vagrant
provisioner:
name: chef_solo
require_chef_omnibus: 11.16.4
platforms:
- name: ubuntu-12.04
driver_config:
box: opscode-ubuntu-12.04
box_url: https://opscode-vm.s3.amazonaws.com/vagrant/opscode_ubuntu-12.04_provisionerless.box
run_list:
- recipe[apt]
- 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
run_list:
- recipe[apt]
suites:
- name: default
data_bags_path: "test/integration/mysql/data_bags"
encrypted_data_bag_secret_key_path: "test/integration/mysql/data_bag_key"
run_list:
- recipe[iptables]
- recipe[openssh::iptables]
- recipe[redmine2]
- recipe[redmine2::iptables]
attributes:
redmine:
host: redmine.dev
db:
type: sqlite
ssl_data_bag_name: redmine_example_com
- name: mysql
data_bags_path: "test/integration/mysql/data_bags"
encrypted_data_bag_secret_key_path: "test/integration/mysql/data_bag_key"
run_list:
- recipe[iptables]
- recipe[openssh::iptables]
- recipe[redmine2]
- recipe[redmine2::iptables]
attributes:
redmine:
host: redmine.dev
db:
type: mysql
ssl_data_bag_name: redmine_example_com
mysql:
server_root_password: q654321
server_repl_password: q654321
server_debian_password: q654321
- name: postgresql
run_list:
- recipe[iptables]
- recipe[openssh::iptables]
- recipe[postgresql::server]
- recipe[redmine2]
- recipe[redmine2::iptables]
attributes:
redmine:
host: redmine.dev
db:
type: postgresql
postgresql:
password:
postgres: q654321
build_essential:
compiletime: true