-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.kitchen.yml
More file actions
52 lines (46 loc) · 1.43 KB
/
.kitchen.yml
File metadata and controls
52 lines (46 loc) · 1.43 KB
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
---
settings:
parallel: true
driver:
name: docker
use_sudo: false
provisioner:
name: chef_zero
product_name: cinc
product_version: 17
nodes_path: 'test/integration/nodes'
data_bags_path: 'test/integration/data_bags'
environments_path: 'test/integration/environments'
roles_path: 'test/integration/roles'
verifier:
name: inspec
platforms:
- name: rockylinux-8
driver_plugin: docker
driver:
image: rockylinux:8
run_command: '/usr/lib/systemd/systemd'
run_options: '--privileged --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro'
- name: centos-7
driver_plugin: docker
driver:
image: centos:7
run_command: '/usr/lib/systemd/systemd'
run_options: '--privileged --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro'
suites:
- name: default
run_list:
- recipe[test-clickhouse::install_zookeeper]
- recipe[test-clickhouse::test_clickhouse_server]
- recipe[test-clickhouse::test_zookeeper_config]
- recipe[test-clickhouse::test_macros_config]
- recipe[test-clickhouse::test_remote_servers_config]
- recipe[test-clickhouse::test_custom_config]
- recipe[test-clickhouse::test_compression_config]
- role[throughout_config_xml]
- name: keeper
run_list:
- recipe[test-clickhouse::test_clickhouse_server]
- recipe[test-clickhouse::test_zookeeper_config]
- recipe[test-clickhouse::test_keeper_config]
- role[throughout_config_xml]