forked from newmediadenver/drupal-lamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
181 lines (181 loc) · 5.37 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
---
driver:
name: vagrant
provisioner:
name: chef_solo
platforms:
- name: ubuntu-12.04
driver_config:
box: precise64
box_url: http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-12042-x64-vbox4210.box
provider: virtualbox
customize:
memory: 1024
network:
- ["private_network", {ip: "192.168.50.5"}]
use_vagrant_provision: true
require_chef_omnibus: true
forward_agent: true
suites:
- name: default
data_bags_path: chef/data_bags
data_path: test/integration/data
roles_path: chef/roles
provisioner:
client_rb:
environment: _default
run_list:
role[drupal_lamp]
attributes:
drupal:
server:
web_user: "www-data"
web_group: "www-data"
assets: "/assets"
base: "/srv/www"
sites:
example:
active: true
deploy:
action:
- deploy
- install
releases: 1
drupal:
version: "7.26"
install:
install_configure_form.update_status_module: "'array(FALSE,FALSE)'"
"--clean-url": 1
settings:
profile: "standard"
files: "sites/default/files"
cookbook: "drupal"
settings:
default:
location: "sites/default/settings.php"
example_template:
location: "sites/default/example.settings.php"
template: "example.settings.php.erb"
example_static:
location: "profiles/standard/standard.settings.php"
db_name: "example"
db_host: "localhost"
db_prefix: ""
db_driver: "mysql"
db_file: ""
repository:
host: "github.com"
uri: "https://github.com/drupal/drupal.git"
revision: "7.26"
web_app:
"80":
server_name: "drupal.local"
rewrite_engine: "On"
docroot: "/srv/www/example/current"
- name: make
data_bags_path: chef/data_bags
data_path: test/integration/data
roles_path: chef/roles
provisioner:
client_rb:
environment: _default
run_list:
role[drupal_lamp]
attributes:
drupal:
server:
web_user: "www-data"
web_group: "www-data"
assets: "/assets"
base: "/srv/www"
sites:
example:
active: true
deploy:
action:
- deploy
- install
releases: 1
drush_make:
api: 2
files:
core: "drupal-org-core.make"
template: true
drupal:
version: "7.26"
install:
install_configure_form.update_status_module: "'array(FALSE,FALSE)'"
"--clean-url": 1
settings:
profile: "standard"
files: "sites/default/files"
cookbook: "drupal"
settings:
default:
location: "sites/default/settings.php"
db_name: "example"
db_host: "localhost"
db_prefix: ""
db_driver: "mysql"
db_file: ""
repository:
host: "github.com"
uri: "https://github.com/commerceguys/commerce_kickstart.git"
revision: "7.x-2.13"
web_app:
"80":
server_name: "drupal.local"
rewrite_engine: "On"
docroot: "/srv/www/example/current"
- name: import
data_bags_path: chef/data_bags
data_path: test/integration/data
roles_path: chef/roles
provisioner:
client_rb:
environment: _default
run_list:
role[drupal_lamp]
attributes:
drupal:
server:
web_user: "www-data"
web_group: "www-data"
assets: "/assets"
base: "/srv/www"
sites:
example:
active: true
deploy:
action:
- deploy
- import
releases: 1
drupal:
version: "7.26"
settings:
profile: "standard"
files: "sites/default/files"
cookbook: "drupal"
settings:
default:
location: "sites/default/settings.php"
example_template:
location: "sites/default/example.settings.php"
template: "example.settings.php.erb"
example_static:
location: "profiles/standard/standard.settings.php"
db_name: "example"
db_host: "localhost"
db_prefix: ""
db_driver: "mysql"
db_file: "/tmp/kitchen/data/test.sql"
repository:
host: "github.com"
uri: "https://github.com/drupal/drupal.git"
revision: "7.26"
web_app:
"80":
server_name: "drupal.local"
rewrite_engine: "On"
docroot: "/srv/www/example/current"