-
Notifications
You must be signed in to change notification settings - Fork 20
/
.kitchen.cloud.yml
90 lines (79 loc) · 1.8 KB
/
.kitchen.cloud.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
---
driver:
name: ec2
access_key_id: "<%= ENV['AWS_ACCESS_KEY_ID'] %>"
secret_access_key: "<%= ENV['AWS_SECRET_ACCESS_KEY'] %>"
aws_ssh_key_id: travis-ci-aws-frank
security_group_ids: ["sg-2dc50845"]
region: eu-central-1
require_chef_omnibus: 12
instance_type: t2.micro
tags:
Name: travis-ci-zabbix_lwrp
transport:
ssh_key: '.travis/travis-ci-aws-frank.pem'
connection_timeout: 10
connection_retries: 5
provisioner:
name: chef_zero
data_bags_path: test/fixtures/data_bags
require_chef_omnibus: 12
platforms:
- name: ubuntu-14.04
driver:
image_id: ami-6bee0004
transport:
username: ubuntu
- name: ubuntu-16.04
driver:
image_id: ami-f9e30f96
transport:
username: ubuntu
- name: centos-73
driver:
image_id: ami-7cbc6e13
verifier:
name: inspec
inspec_tests:
- path: test/integration/inspec
suites:
- name: zabbix24-mysql
run_list:
- recipe[zabbix_lwrp_test::zabbix24_mysql]
excludes:
- ubuntu-16.04
verifier:
attributes:
db: mysql
- name: zabbix24-postgresql
run_list:
- recipe[zabbix_lwrp_test::zabbix24_postgresql]
excludes:
- ubuntu-16.04
verifier:
attributes:
db: postgresql
- name: zabbix30-mysql
run_list:
- recipe[zabbix_lwrp_test::zabbix30_mysql]
verifier:
attributes:
db: mysql
- name: zabbix30-postgresql
run_list:
- recipe[zabbix_lwrp_test::zabbix30_postgresql]
verifier:
attributes:
db: postgresql
- name: zabbix32-mysql
run_list:
- recipe[zabbix_lwrp_test::zabbix32_mysql]
verifier:
attributes:
db: mysql
- name: zabbix32-postgresql
run_list:
- recipe[zabbix_lwrp_test::zabbix32_postgresql]
verifier:
attributes:
db: postgresql