forked from elastic/ansible-beats
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.kitchen.yml
102 lines (100 loc) · 3.02 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
98
99
100
101
102
---
driver:
name: docker
provisioner:
name: ansible_playbook
hosts: localhost
roles_path: ./
require_ansible_repo: true
ansible_verbose: true
idempotency_test: true
platforms:
- name: ubuntu-14.04
driver_config:
image: ubuntu:14.04
privileged: true
provision_command:
- apt-get update && apt-get install -y software-properties-common && add-apt-repository -y ppa:ansible/ansible
- apt-get update && apt-get -y -q install ansible python-apt python-pycurl
use_sudo: false
- name: ubuntu-16.04
driver_config:
image: ubuntu:16.04
privileged: true
provision_command:
- apt-get update && apt-get install -y software-properties-common && add-apt-repository -y ppa:ansible/ansible
- apt-get update && apt-get -y -q install ansible python-apt python-pycurl
use_sudo: false
- name: ubuntu-18.04
driver_config:
image: ubuntu:18.04
privileged: true
provision_command:
- apt-get update && apt-get install -y software-properties-common && add-apt-repository -y ppa:ansible/ansible
- apt-get update && apt-get -y -q install ansible python-apt python-pycurl
- mkdir -p /run/sshd
use_sudo: false
- name: debian-8
driver_config:
image: debian:8
privileged: true
provision_command:
- echo "deb http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main" > /etc/apt/sources.list.d/ansible.list
- apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367
- apt-get update && apt-get -y install ansible
use_sudo: false
- name: debian-9
driver_config:
image: debian:9
privileged: true
provision_command:
- apt-get update && apt-get -y install gnupg2
- echo "deb http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main" > /etc/apt/sources.list.d/ansible.list
- apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367
- apt-get update && apt-get -y install ansible
use_sudo: false
- name: centos-6
driver_config:
image: centos:6
privileged: true
provision_command:
- yum -y install epel-release
- yum -y install ansible
use_sudo: false
- name: centos-7
driver_config:
image: centos:7
provision_command:
- yum -y install ansible
run_command: "/usr/sbin/init"
privileged: true
use_sudo: false
suites:
- name: standard
provisioner:
playbook: test/integration/standard.yml
additional_copy_path:
- "."
run_list:
attributes:
- name: standard-6x
provisioner:
playbook: test/integration/standard-6x.yml
additional_copy_path:
- "."
run_list:
attributes:
- name: multi
provisioner:
playbook: test/integration/multi.yml
additional_copy_path:
- "."
run_list:
attributes:
- name: config
provisioner:
playbook: test/integration/config.yml
additional_copy_path:
- "."
run_list:
attributes: