-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.kitchen.yml
53 lines (49 loc) · 1.03 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
---
driver:
name: vagrant
network:
- ["forwarded_port", {guest: 80, host: 8080}]
- ["private_network", {ip: "192.168.33.33"}]
provisioner:
name: chef_solo
require_chef_omnibus: true
platforms:
- name: ubuntu-14.04
run_list:
- recipe[apt]
busser:
version: [email protected]
suites:
- name: cicd
run_list:
- recipe[build-essential]
- recipe[python]
- recipe[jtalks::cicd]
- recipe[java]
- name: databases
run_list:
- recipe[mysql::server]
- recipe[database::mysql]
- recipe[jtalks::databases]
- name: nginx
run_list:
- recipe[nginx]
- recipe[jtalks::nginx]
- name: webapps
run_list:
- recipe[ark]
- recipe[jtalks::webapps]
- name: system
run_list:
- recipe[python]
- recipe[java]
- recipe[ark]
- recipe[mysql::server]
- recipe[database::mysql]
- recipe[firewall]
- recipe[nginx]
- recipe[jtalks::cicd]
- recipe[jtalks::firewall]
- recipe[jtalks::webapps]
- recipe[jtalks::databases]
- recipe[jtalks::nginx]