forked from isuftin/chef-cookbook-oracle-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
52 lines (47 loc) · 1.29 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
---
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-6.7-vbox
driver:
box: bento/centos-6.7
box_url: bento/centos-6.7
provider: virtualbox
customize:
memory: 6144
- name: centos-6.7-vmware
driver:
box: bento/centos-6.7
box_url: bento/centos-6.7
provider: vmware_fusion
customize:
memory: 6144
suites:
- name: default
run_list:
- recipe[sysctl::apply]
- recipe[owi-oracle-server]
data_path: './test/fixtures/files/'
data_bags_path: './test/integration/default/data_bags/'
encrypted_data_bag_secret_key_path: './test/integration/default/encrypted_data_bag_secret'
attributes: {
'sysctl' : {
'params' : {
'net.core.wmem_max' : '1048576',
'net.core.wmem_default' : '262144',
'net.core.rmem_max' : '4194304',
'net.core.rmem_default' : '262144',
'net.ipv4.ip_local_port_range' : '9000 65535',
'fs.filemax' : '6815744',
'fs.aio-max-nr' : '1048576',
'kernel.semmsl' : '250',
'kernel.semmns' : '32000',
'kernel.semopm' : '100',
'kernel.semmni' : '128',
'kernel.shmmni' : '4096',
'kernel.panic_on_oops' : '1'
}
}
}