forked from chef-cookbooks/chef-ingredient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
75 lines (64 loc) · 1.49 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
63
64
65
66
67
68
69
70
71
72
73
74
75
---
driver:
name: vagrant
customize:
memory: 2048
cpus: 2
provisioner:
name: policyfile_zero
data_bags_path: test/fixtures/data_bags
platforms:
- name: ubuntu-12.04
- name: ubuntu-14.04
- name: centos-6.6
- name: centos-7.1
suites:
- name: default
run_list:
- recipe[test]
- recipe[test::repo]
attributes:
- name: override_package_versions
run_list:
- recipe[test]
- recipe[test::repo]
attributes:
test:
chef-server-core:
version: 12.0.4
- name: override_package_versions_rc
run_list:
- recipe[test]
- recipe[test::repo]
attributes:
apt-chef:
repo-name: 'chef-current'
uri: 'https://packagecloud.io/chef/current/ubuntu/'
yum-chef:
repositoryid: 'chef-current'
baseurl: 'https://packagecloud.io/chef/current/el/6/$basearch'
test:
chef-server-core:
version: 12.1.0-rc.3
- name: local_package_install
run_list:
- recipe[test]
- recipe[test::local]
attributes:
- name: chefdk
run_list:
- recipe[test::chefdk]
- name: upgrade
run_list:
- recipe[test::upgrade]
- name: push_client
# we don't yet have push client packages for trusty, only precise
excludes: ['ubuntu-14.04']
run_list:
- recipe[test::push]
- name: ingredient_config
run_list:
- recipe[test::ingredient_config]
- name: different_channels
run_list:
- recipe[test::different_channels]