This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path.kitchen.yml
92 lines (89 loc) · 2.92 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
<%
# To keep the YAML as simple as possible, some values are computed here
AWS_ACCESS_KEY_ID = ENV['ICE_AWS_ACCESS_KEY_ID'] || 'ice_billing_aws_access_key_id'
AWS_ACCESS_KEY_SECRET = ENV['ICE_AWS_ACCESS_KEY_SECRET'] || 'ice_billing_aws_secret_key'
%>
---
driver:
name: vagrant
customize:
cpus: 2
memory: 2048
provisioner:
name: chef_zero
require_chef_omnibus: latest
data_path: test/shared
data_bags_path: test/integration/default/data_bags
platforms:
- name: ubuntu-14.04
- name: ubuntu-12.04
- name: centos-7.1
- name: centos-6.6
suites:
- name: tomcat6
run_list:
- recipe[minitest-handler]
- recipe[ice]
attributes:
tomcat:
base_version: 6
keytool: /usr/lib/jvm/default-java/bin/keytool
ice:
version: 0.0.4
war_url: https://s3.amazonaws.com/dl.imedidata.net/ice
skip_manifest_check: true
checksum: eb9e7503585553bdebf9d93016bcbe7dc033c21e2b1b2f0df0978ca2968df047
company_name: Your Company
billing_aws_access_key_id: <%= AWS_ACCESS_KEY_ID %>
billing_aws_secret_key: <%= AWS_ACCESS_KEY_SECRET %>
billing_s3_bucket_name: kitchen-tests
work_s3_bucket_name: kitchen-tests
billing_s3_bucket_prefix: ice-cookbook-tests-billing-<%= ENV['USER'] %>/
work_s3_bucket_prefix: ice-cookbook-tests-work-<%= ENV['USER'] %>/
includes:
- ubuntu-12.04
- ubuntu-14.04
- name: tomcat6-rhel
run_list:
- recipe[minitest-handler]
- recipe[ice]
attributes:
tomcat:
base_version: 6
keytool: /usr/lib/jvm/java-1.6.0/bin/keytool
ice:
version: 0.0.4
war_url: https://s3.amazonaws.com/dl.imedidata.net/ice
skip_manifest_check: true
checksum: eb9e7503585553bdebf9d93016bcbe7dc033c21e2b1b2f0df0978ca2968df047
company_name: Your Company
billing_aws_access_key_id: <%= AWS_ACCESS_KEY_ID %>
billing_aws_secret_key: <%= AWS_ACCESS_KEY_SECRET %>
billing_s3_bucket_name: kitchen-tests
work_s3_bucket_name: kitchen-tests
billing_s3_bucket_prefix: ice-cookbook-tests-billing-<%= ENV['USER'] %>/
work_s3_bucket_prefix: ice-cookbook-tests-work-<%= ENV['USER'] %>/
includes:
- centos-6.6
- name: tomcat7-rhel
run_list:
- recipe[minitest-handler]
- recipe[ice]
attributes:
tomcat:
base_version: 7
keytool: /usr/lib/jvm/java-1.6.0/bin/keytool
ice:
version: 0.0.4
war_url: https://s3.amazonaws.com/dl.imedidata.net/ice
skip_manifest_check: true
checksum: eb9e7503585553bdebf9d93016bcbe7dc033c21e2b1b2f0df0978ca2968df047
company_name: Your Company
billing_aws_access_key_id: <%= AWS_ACCESS_KEY_ID %>
billing_aws_secret_key: <%= AWS_ACCESS_KEY_SECRET %>
billing_s3_bucket_name: kitchen-tests
work_s3_bucket_name: kitchen-tests
billing_s3_bucket_prefix: ice-cookbook-tests-billing-<%= ENV['USER'] %>/
work_s3_bucket_prefix: ice-cookbook-tests-work-<%= ENV['USER'] %>/
includes:
- centos-7.1