-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.kitchen.yml
59 lines (55 loc) · 1.21 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
---
driver:
name: ec2
subnet_id: subnet-f1f6acac # development-public-us-east-1b
# TODO: Switch to the below when
# https://github.com/test-kitchen/kitchen-ec2/issues/394 is fixed
# subnet_filter:
# tag: 'Name'
# value: 'development-public-us-east-1b'
iam_profile_name: test-ebs-attachment
tags:
Env: test
Type: test
Operator: <%= ENV['USER'] %>
provisioner:
name: chef_zero
product_name: chef
product_version: <%= ENV['CHEF_VERSION'] || 'latest' %>
attributes:
storage:
ebs_volumes:
vol1:
device: /dev/xvde
size: 2
delete_on_termination: true
verifier:
name: inspec
platforms:
- name: ubuntu-16.04
run_list:
- recipe[storage::default]
- name: ubuntu-18.04
run_list:
- recipe[storage::default]
suites:
- name: ebs
driver:
tags:
Name: storage-ebs-test
instance_type: t2.medium
- name: es
driver:
tags:
Name: storage-es-test
instance_type: c3.xlarge
- name: nvme
driver:
tags:
Name: storage-nvme-test
instance_type: i3.large
- name: nvme-c5d
driver:
tags:
Name: storage-nvme-test
instance_type: c5d.large