This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path.kitchen.yml
97 lines (91 loc) · 1.97 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
---
# http://kitchen.ci/docs/getting-started
# https://github.com/marcy-terui/kitchen-docker_cli
# https://github.com/neillturner/kitchen-puppet
driver:
name: docker_cli
skip_preparation: true
privileged: true
instance_container_name: false
instance_host_name: true
volume:
- /sys/fs/cgroup:/sys/fs/cgroup
transport:
name: docker_cli
provisioner:
name: puppet_apply
manifests_path: test/integration
modules_path: modules
puppet_no_sudo: true
require_chef_for_busser: false
require_puppet_collections: false
require_puppet_omnibus: false
require_puppet_repo: false
verifier:
name: busser
ruby_bindir: '/usr/bin'
platforms:
# CentOS 6
- name: centos-6
driver_config:
image: vpgrp/puppet:centos-6
command: /sbin/init
# CentOS 7
- name: centos-7
driver_config:
image: vpgrp/puppet:centos-7
command: /sbin/init
# Debian 8
- name: debian-8
driver_config:
image: vpgrp/puppet:debian-8
command: /bin/systemd
# Debian 9
- name: debian-9
driver_config:
image: vpgrp/puppet:debian-9
command: /bin/systemd
# Debian 10
- name: debian-10
driver_config:
image: vpgrp/puppet:debian-10
command: /bin/systemd
# Ubuntu 14.04
- name: ubuntu-14-04
driver_config:
image: vpgrp/puppet:ubuntu-14.04
# Ubuntu 16.04
- name: ubuntu-16-04
driver_config:
image: vpgrp/puppet:ubuntu-16.04
command: /bin/systemd
# Ubuntu 18.04
- name: ubuntu-18-04
driver_config:
image: vpgrp/puppet:ubuntu-18.04
command: /bin/systemd
suites:
# CentOS
- name: centos
provisioner:
manifest: centos/init.pp
includes:
- centos-6
- centos-7
# Debian
- name: debian
provisioner:
manifest: debian/init.pp
includes:
- debian-8
- debian-9
- debian-10
# Ubuntu
- name: ubuntu
provisioner:
manifest: ubuntu/init.pp
includes:
- ubuntu-14-04
- ubuntu-16-04
- ubuntu-18-04
# EOF