-
Notifications
You must be signed in to change notification settings - Fork 11
/
.kitchen.yml
41 lines (37 loc) · 906 Bytes
/
.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
---
driver:
name: vagrant
vm_hostname: 'kong.local'
# without additional memory, ubuntu suites will fail
customize:
memory: 1024
network:
- ["forwarded_port", {guest: 8000, host: 8000, auto_correct: true}]
- ["forwarded_port", {guest: 8001, host: 8001, auto_correct: true}]
- ["forwarded_port", {guest: 8443, host: 8443, auto_correct: true}]
provisioner:
name: chef_zero
require_chef_omnibus: 12
# Preparing for Chef 13
client_rb:
treat_deprecation_warnings_as_errors: true
resource_cloning: false
platforms:
- name: centos-6.7
- name: centos-7.2
- name: debian-6.0.10
run_list: recipe[apt]
- name: debian-7.9
run_list: recipe[apt]
- name: ubuntu-12.04
run_list: recipe[apt]
- name: ubuntu-14.04
run_list: recipe[apt]
- name: ubuntu-15.04
run_list: recipe[apt]
- name: ubuntu-16.04
run_list: recipe[apt]
suites:
- name: default
run_list:
- recipe[kong_test]