forked from ahelal/ansible-concourse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
105 lines (95 loc) · 3.96 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
103
104
105
---
driver :
name : docker
socket : unix:///var/run/docker.sock
use_sudo : false
privileged : true
volume : /opt/concourseci/worker
verifier :
name : serverspec
remote_exec : false
default_pattern : true
bundler_path : <%= '/opt/hellofresh/kitchen/embedded/bin' if File.exist?('/opt/hellofresh/kitchen/embedded/bin/bundler') %>
rspec_path : <%= '/opt/hellofresh/kitchen/embedded/bin' if File.exist?('/opt/hellofresh/kitchen/embedded/bin/rspec') %>
gemfile : ./test/integration/Gemfile
provisioner :
name : ansible_push
ansible_config : "tests/ansible.cfg"
chef_bootstrap_url : nil
use_instance_name : True
idempotency_test : True
diff : True
sudo : True
verbose : "vvvv"
platforms :
- name : "ubuntu1404_23"
driver_config :
image : ubuntu:14.04
platform : ubuntu
provisioner :
ansible_playbook_bin : "`avm path v2.3`ansible-playbook"
groups :
concourse-web :
- 'simple-ubuntu1404-23'
concourse-worker :
- 'simple-ubuntu1404-23'
- 'worker-ubuntu1404-23'
- name : "ubuntu1404_25"
driver_config :
image : ubuntu:14.04
platform : ubuntu
provisioner :
ansible_playbook_bin : "`avm path v2.5`ansible-playbook"
groups :
concourse-web :
- 'simple-ubuntu1404-25'
concourse-worker :
- 'simple-ubuntu1404-25'
- 'worker-ubuntu1404-25'
- name : "ubuntu1604_23"
driver_config :
image : ubuntu:16.04
platform : ubuntu
provisioner :
ansible_playbook_bin : "`avm path v2.3`ansible-playbook"
groups :
concourse-web :
- 'simple-ubuntu1604-23'
concourse-worker :
- 'simple-ubuntu1604-23'
- 'worker-ubuntu1604-23'
- name : "ubuntu1604_24"
driver_config :
image : ubuntu:16.04
platform : ubuntu
provisioner :
ansible_playbook_bin : "`avm path v2.4`ansible-playbook"
groups :
concourse-web :
- 'simple-ubuntu1604-24'
concourse-worker :
- 'simple-ubuntu1604-24'
- 'worker-ubuntu1604-24'
- name : "ubuntu1604_25"
driver_config :
image : ubuntu:16.04
platform : ubuntu
provisioner :
ansible_playbook_bin : "`avm path v2.5`ansible-playbook"
groups :
concourse-web :
- 'simple-ubuntu1604-25'
concourse-worker :
- 'simple-ubuntu1604-25'
- 'worker-ubuntu1604-25'
suites:
- name : simple
provisioner :
playbook : "test/integration/simple/simple.yml"
driver_config :
hostname : "simple"
# - name : manage
# provisioner :
# playbook : "test/integration/manage/manage.yml"
# driver_config :
# hostname : "manage"