blob: 5fa7b84763b6d9347b7921fe9f1869ec51032ab3 (
plain)
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
|
---
driver:
name: ec2
region: us-east-1
vpc_mode: true
vpc_id: <%= ENV['KITCHEN_VPC'] %>
subnet_id: <%= ENV['KITCHEN_SUBNET'] %>
security_group_ids:
- <%= ENV['KITCHEN_SECURITY_GROUP'] %>
aws_ssh_key_id: <%= ENV['KITCHEN_SSH_KEY_ID'] %>
interface: private
associate_public_ip: true
tags:
name: "server package test"
owner: "build"
expire-on: "<%= ENV['KITCHEN_EXPIRE'] %>"
verifier:
name: inspec
sudo: true
provisioner:
name: chef_solo
require_chef_omnibus: 12.6.0
platforms:
- name: amazon
driver:
image_id: ami-c481fad3
transport:
username: ec2-user
- name: debian81
driver:
image_id: ami-116d857a
transport:
username: admin
- name: debian92
driver:
image_id: ami-71b7750b
transport:
username: admin
- name: rhel62
driver:
# Use rhel 6.5 chef fails on previous versions.
image_id: ami-5b697332
transport:
username: root
instance_type: t2.small
- name: rhel70
driver:
image_id: ami-60a1e808
transport:
username: root
- name: rhel80
driver:
image_id: ami-0c322300a1dd5dc79
transport:
username: ec2-user
- name: suse11
driver:
image_id: ami-7f2e6015
transport:
username: ec2-user
- name: suse12
driver:
image_id: ami-043eebeabcc4e3d35
transport:
username: ec2-user
- name: ubuntu1204
driver:
image_id: ami-3fec7956
transport:
username: ubuntu
- name: ubuntu1404
driver:
image_id: ami-1d8c9574
transport:
username: ubuntu
- name: ubuntu1604
driver:
image_id: ami-64140d0e
transport:
username: ubuntu
- name: ubuntu1804
driver:
image_id: ami-7ad76705
transport:
username: ubuntu
transport:
ssh_key: ~/.ssh/kitchen.pem
suites:
- name: service
run_list:
- recipe[package_test::install_mongodb]
attributes:
artifacts_url: <%= ENV['KITCHEN_ARTIFACTS_URL'] %>
|