-
Notifications
You must be signed in to change notification settings - Fork 79
/
kitchen.dokken.yml
64 lines (59 loc) · 1.47 KB
/
kitchen.dokken.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
---
# TAS50: THIS IS NOT A TYPICAL STANDARD DOKKEN KITCHEN FILE
driver:
name: dokken
privileged: true # because Docker and SystemD/Upstart
chef_version: latest
transport:
name: dokken
provisioner:
name: chef_zero
root_path: /opt/kitchen
product_name: chef
product_version: '<%= ENV["CHEF_VERSION"] || "12.22.5" %>'
chef_omnibus_url: "https://omnitruck.chef.io/install.sh"
data_path: test/fixtures
retry_on_exit_code:
- 213
max_retries: 1
wait_for_retry: 1
client_rb:
exit_status: :enabled
client_fork: false
verifier:
name: inspec
platforms:
- name: ubuntu-16.04
driver:
image: dokken/ubuntu-16.04
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update
- RUN /usr/bin/apt-get install sudo cron -y
suites:
- name: default
run_list:
- recipe[test::default]
- name: license
run_list:
- recipe[test::license]
# Test the upgrade from 14 -> 15 where the license is accepted even if all other tests upgrade
# their original version to 15
provisioner:
product_version: '14'
- name: kill
run_list:
- recipe[test::kill]
- name: direct_url
run_list:
- recipe[test::direct_url]
includes: centos-6
- name: constrained
run_list:
- recipe[test::constrained]
- name: noop
run_list:
- recipe[test::default]
attributes:
chef_client_updater:
version: '<%= ENV["CHEF_VERSION"] || "12.22.5" %>'