forked from state-hiu/rogue-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.kitchen.yml
More file actions
36 lines (33 loc) · 810 Bytes
/
.kitchen.yml
File metadata and controls
36 lines (33 loc) · 810 Bytes
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
---
driver:
name: vagrant
provisioner:
name: chef_solo
platforms:
- name: ubuntu-12.04
driver:
box: ubuntu-12.04
box_url: "http://files.vagrantup.com/precise64.box"
customize:
memory: 5000
cpus: 10
suites:
- name: default
run_list:
- recipe[apt]
- recipe[python]
- recipe[git]
- recipe[rogue::gdal]
- recipe[rogue::postgresql]
- recipe[rogue]
attributes: {'tomcat':
{'java_options':
"-Djava.awt.headless=true -Xmx3g -XX:MaxPermSize=256m -XX:+UseConcMarkSweepGC"
},
'rogue':
{
'geoserver':{
'url':'http://localhost:8080/geoserver/'
}
}
}