-
Notifications
You must be signed in to change notification settings - Fork 1
/
.kitchen.yml
70 lines (63 loc) · 1.74 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
---
driver:
name: ec2
aws_access_key_id: <%= ENV['ARTIFACTS_AWS_ACCESS_KEY_ID'] %>
aws_secret_access_key: <%= ENV['ARTIFACTS_AWS_SECRET_ACCESS_KEY'] %>
aws_ssh_key_id: <%= ENV['AWS_KEYPAIR_NAME'] %>
ssh_key: <%= ENV['EC2_SSH_KEY_PATH'] %>
security_group_ids: ["default"]
security_group_ids: default
require_chef_omnibus: "10.16.2"
tags:
"created-by": "test-kitchen"
use_vagrant_berkshelf_plugin: true
provisioner:
name: chef_solo
platforms:
- name: ubuntu-12.04
driver:
image_id: ami-967edcff
username: ubuntu
flavor_id: "m1.small"
tags:
Name: cookbook-qubell-build-ct-Ubuntu-12.04
owner_name: test-kitchen
- name: ubuntu-10.04
driver:
image_id: ami-9f3906f6
username: ubuntu
flavor_id: "m1.small"
tags:
Name: cookbook-qubell-build-ct-Ubuntu-10.04
owner_name: test-kitchen
- name: centos-6.4
driver:
image_id: ami-bf5021d6
username: root
flavor_id: "m1.small"
tags:
Name: cookbook-qubell-build-ct-CentOS-6.4
owner_name: test-kitchen
- name: centos-5.3
driver:
image_id: ami-beda31d7
username: root
flavor_id: "m1.small"
tags:
Name: cookbook-qubell-build-ct-CentOS-5.3
owner_name: test-kitchen
suites:
- name: default
run_list:
- recipe[minitest-handler]
- recipe[cookbook-qubell-build_test]
attributes: {"cookbook-qubell-build": {
"dest_path": "/tmp",
"target": "/tmp/mvn"
},
"scm": {
provider: "git",
repository: "git://github.com/qubell/starter-java-web.git",
revision: "HEAD"
},
}