-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
74 lines (70 loc) · 1.42 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
---
driver:
name: docker
binary: docker
use_sudo: false
provisioner:
name: chef_zero
chef_license: accept
require_chef_omnibus: <%= ENV['CHEF_VERSION'] || 13 %>
verifier:
name: inspec
platforms:
- name: debian-8
run_list:
- recipe[apt]
- name: debian-9
run_list:
- recipe[apt]
- name: debian-10
run_list:
- recipe[apt]
- name: ubuntu-16.04
run_list:
- recipe[apt]
- name: ubuntu-18.04
run_list:
- recipe[apt]
- name: ubuntu-20.04
run_list:
- recipe[apt]
suites:
- name: default
run_list:
- recipe[cloud_init]
- recipe[cloud_init::upgrade]
attributes:
cloud_init:
cfgs:
hostname:
priority: 42
config:
preserve_hostname: true
- name: disable
run_list:
- recipe[cloud_init]
- recipe[cloud_init::disable]
- name: enable
run_list:
- recipe[cloud_init]
- recipe[cloud_init::disable]
- recipe[cloud_init::enable]
- name: remove
run_list:
- recipe[cloud_init]
- recipe[cloud_init::remove]
- name: purge
run_list:
- recipe[cloud_init]
- recipe[cloud_init::purge]
attributes:
cloud_init:
cfgs:
hostname:
priority: 42
config:
preserve_hostname: true
- name: lwrp_cfg
run_list:
- recipe[cloud_init]
- recipe[cloud_init_lwrp]