forked from sous-chefs/java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
139 lines (136 loc) · 2.73 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
---
driver:
name: vagrant
require_chef_omnibus: true
customize:
memory: 1024
provisioner:
name: chef_zero
attributes:
java:
ark_retries: 2
ark_retry_delay: 10
platforms:
- name: ubuntu-14.04
run_list:
- recipe[apt]
driver:
box: opscode-ubuntu-14.04
- name: ubuntu-13.10
driver:
box: opscode-ubuntu-13.10
run_list:
- recipe[apt]
- name: ubuntu-12.04
driver:
box: opscode-ubuntu-12.04
run_list:
- recipe[apt]
- name: ubuntu-10.04
driver:
box: opscode-ubuntu-10.04
run_list:
- recipe[apt]
- name: debian-6.0.8
driver:
box: opscode-debian-6.0.8
run_list:
- recipe[apt]
- name: debian-7.6
driver:
box: opscode-debian-7.6
run_list:
- recipe[apt]
- name: debian-7.4
driver:
box: opscode-debian-7.4
run_list:
- recipe[apt]
- name: centos-7.0
driver:
box: opscode-centos-7.0
- name: centos-6.5
driver:
box: opscode-centos-6.5
- name: centos-5.10
driver:
box: opscode-centos-5.10
- name: fedora-19
driver:
box: opscode-fedora-19
- name: fedora-20
driver:
box: opscode-fedora-20
suites:
- name: openjdk
excludes:
- fedora-19
- fedora-20
run_list:
- recipe[java::default]
- name: openjdk-7
excludes:
- ubuntu-10.04
- debian-6.0.8
run_list:
- recipe[java::default]
attributes:
java:
jdk_version: "7"
- name: oracle
run_list:
- recipe[test_java::default]
- recipe[java::default]
attributes:
java:
oracle:
accept_oracle_download_terms: true
jce:
enabled: true
install_flavor: oracle
- name: oracle-7
run_list:
- recipe[test_java::default]
- recipe[java::default]
attributes:
java:
jdk_version: "7"
oracle:
accept_oracle_download_terms: true
jce:
enabled: true
install_flavor: oracle
- name: oracle-8
run_list:
- recipe[test_java::default]
- recipe[java::default]
attributes:
java:
jdk_version: "8"
oracle:
accept_oracle_download_terms: true
jce:
enabled: true
install_flavor: oracle
- name: oracle-direct
run_list:
- recipe[java::oracle]
attributes:
java:
oracle:
accept_oracle_download_terms: true
- name: openjdk-direct
run_list:
- recipe[java::openjdk]
excludes:
- fedora-19
- fedora-20
- name: oracle-rpm
run_list:
- recipe[java]
attributes:
java:
install_flavor: oracle_rpm
jdk_version: 7
oracle:
accept_oracle_download_terms: true