forked from disney/couchbase
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.kitchen.yml
62 lines (53 loc) · 1.04 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
---
driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
customize:
memory: 1024
provisioner:
name: chef_zero
platforms:
- name: debian-7.6
run_list:
- recipe[apt]
- name: ubuntu-12.04
run_list:
- recipe[apt]
- name: centos-6.5
- name: windows-2012R2
transport:
name: winrm
driver_config:
box: win2012r2-datacenter-chef11.16.2
vm_hostname: couchbase
require_chef_omnibus: false
suites:
- name: server-community
run_list:
- recipe[minitest-handler]
- recipe[couchbase::server]
attributes:
couchbase:
server:
password: "whatever"
- name: server-enterprise
run_list:
- recipe[minitest-handler]
- recipe[couchbase::server]
attributes:
couchbase:
server:
edition: "enterprise"
password: "whatever"
version: "2.1.0"
- name: moxi
run_list:
- recipe[minitest-handler]
- recipe[couchbase::moxi]
attributes: {}
excludes: ["windows-2012R2"]
- name: client
run_list:
- recipe[minitest-handler]
- recipe[couchbase::client]
attributes: {}