-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.kitchen.yml
111 lines (108 loc) · 2.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
---
driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
platforms:
- name: ubuntu-12.04-fresh
driver_config:
box: precise64
box_url: http://dl.dropbox.com/u/1537815/precise64.box
run_list:
- recipe[deploy-drupal::dependencies]
attributes: {
"mysql": {
"server_root_password": "root",
"server_debian_password": "root",
"server_repl_password": "root"
}
}
suites:
- name: download-and-install-7
run_list:
- recipe[deploy-drupal::default]
- recipe[minitest-handler]
- name: download-populate-install
run_list:
- recipe[deploy-drupal::default]
- recipe[minitest-handler]
attributes: {
"deploy-drupal" : {
"dev_group" : "vagrant"
},
"minitest": {
"recipes": ["deploy-drupal::default"]
}
}
- name: download-and-install-6
run_list:
- recipe[deploy-drupal::default]
- recipe[minitest-handler]
- name: download-populate-install
run_list:
- recipe[deploy-drupal::default]
- recipe[minitest-handler]
attributes: {
"deploy-drupal" : {
"dev_group" : "vagrant",
"version" : "6"
},
"minitest": {
"recipes": ["deploy-drupal::default"]
}
}
- name: get-project-path
run_list:
- recipe[deploy-drupal::default]
- recipe[minitest-handler]
attributes: {
"deploy-drupal": {
"dev_group" : "vagrant",
"get_project" : {
"git" : "" ,
"path" : "/vagrant/repo"
},
},
"minitest": {
"recipes": ["deploy-drupal::default"]
}
}
- name: get-project-git-with-dump
run_list:
- recipe[deploy-drupal::default]
- recipe[minitest-handler]
attributes: {
"deploy-drupal": {
"dev_group" : "vagrant",
"get_project" : {
"git_repo" : "file:///vagrant/repo" ,
"git_branch" : "foo"
},
"install" : {
"sql_dump" : "db/sql_dump",
"settings" : "settings-priv.php",
},
},
"minitest": {
"recipes": ["deploy-drupal::default"]
}
}
- name: nginx
run_list:
- recipe[deploy-drupal::default]
- recipe[deploy-drupal::nginx]
- recipe[minitest-handler]
attributes: {
"deploy-drupal": {
"dev_group" : "vagrant",
"apache_port" : "8000",
"nginx" : {
"port": "80"
},
},
"apache" : {
"listen_ports" : ["8000"]
},
"minitest": {
"recipes": ["deploy-drupal::default", "deploy-drupal::nginx"]
},
}