forked from sous-chefs/java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
163 lines (160 loc) · 3.23 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
---
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: box-cutter/ubuntu1404
run_list:
- recipe[apt]
- name: ubuntu-12.04
driver:
box: box-cutter/ubuntu1204
run_list:
- recipe[apt]
- name: debian-8.2
driver:
box: box-cutter/debian82
run_list:
- recipe[apt]
- name: debian-7.9
driver:
box: box-cutter/debian79
run_list:
- recipe[apt]
- name: centos-7.1
driver:
box: box-cutter/centos71
- name: centos-6.7
driver:
box: box-cutter/centos67
- name: centos-5.11
driver:
box: box-cutter/centos511
- name: fedora-22
driver:
box: box-cutter/fedora22
- name: fedora-21
driver:
box: box-cutter/fedora21
suites:
- name: openjdk-6
includes:
- centos-5.11
- centos-6.7
- centos-7.1
- debian-7.9
- ubuntu-12.04
- ubuntu-14.04
run_list:
- recipe[java::default]
- name: openjdk-7
includes:
- centos-5.11
- centos-6.7
- centos-7.1
- debian-7.9
- debian-8.2
- ubuntu-12.04
- ubuntu-14.04
run_list:
- recipe[java::default]
attributes:
java:
jdk_version: "7"
- name: openjdk-8
includes:
- ubuntu-14.04
- centos-6.7
- centos-7.1
- fedora-21
- fedora-22
run_list:
- recipe[java::default]
attributes:
java:
jdk_version: "8"
- 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]
- name: oracle-rpm
includes:
- centos-5.11
- centos-6.7
- centos-7.1
- fedora-21
run_list:
- recipe[java::default]
attributes:
java:
install_flavor: oracle_rpm
jdk_version: 7
oracle:
accept_oracle_download_terms: true
- name: oracle-rpm-8
includes:
- centos-5.11
- centos-6.7
- centos-7.1
- fedora-21
run_list:
- recipe[java::default]
attributes:
java:
install_flavor: oracle_rpm
jdk_version: 8
oracle:
accept_oracle_download_terms: true