forked from sous-chefs/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
45 lines (40 loc) · 1.26 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
---
################################################################################
# Any local customizations should be placed inside the .kitchen.local.yml, which
# will not be checked in or overwritten. You may also use ~/.kitchen/config.yml
# or environment variables like VAGRANT_DEFAULT_PROVIDER. Anything in those will
# take precedence over anything set in `.kitchen.yml`.
################################################################################
driver:
name: vagrant # provide a default test-kitchen driver, vagrant
driver_config:
require_chef_omnibus: true
provisioner:
name: chef_zero
nodes_path: 'test/fixtures/nodes'
data_bags_path: 'test/fixtures/data_bags'
environments_path: 'test/fixtures/environments'
client_rb:
environment: _default
attributes:
java:
jdk_version: '7'
platforms:
- name: ubuntu-14.04
run_list:
- recipe[apt]
- name: ubuntu-12.04
run_list:
- recipe[apt]
- name: centos-6.6
run_list:
- recipe[yum]
suites:
- name: default # the normal use-case
run_list:
- recipe[java]
- recipe[elasticsearch_test::default_with_plugins]
- name: elasticsearch_test # the override-everything use case
run_list:
- recipe[java]
- recipe[elasticsearch_test::default]