-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.kitchen.yml
60 lines (55 loc) · 1.55 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
---
driver:
name: dokken
privileged: true # allows systemd services to start
chef_image: cincproject/cinc
chef_version: <%= ENV.fetch('CHEF_VERSION', 18) %>
provisioner:
name: dokken
product_name: cinc
chef_binary: /opt/cinc/bin/cinc-client
deprecations_as_errors: true
enforce_idempotency: true
multiple_converge: 2
transport:
name: dokken
verifier:
name: inspec
platforms:
# @see https://github.com/chef-cookbooks/testing_examples/blob/main/kitchen.dokken.yml
# @see https://hub.docker.com/u/dokken
- name: debian-11
driver:
image: dokken/debian-11
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update
- RUN /usr/bin/apt-get upgrade -y
- name: debian-12
driver:
image: dokken/debian-12
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update
- RUN /usr/bin/apt-get upgrade -y
- name: ubuntu-2204
driver:
image: dokken/ubuntu-22.04
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update
- RUN /usr/bin/apt-get upgrade -y
- name: ubuntu-2404
driver:
image: dokken/ubuntu-24.04
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update
- RUN /usr/bin/apt-get upgrade -y
suites:
- name: default
run_list:
- recipe[bitcoin::<%= ENV.fetch('KITCHEN_RECIPE', 'binary') %>]
attributes:
bitcoin:
variant: <%= ENV.fetch('KITCHEN_VARIANT', 'core') %>