forked from sous-chefs/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen.yml
109 lines (99 loc) · 2.58 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
106
107
108
109
driver:
name: vagrant
customize:
cpus: 2
memory: 1024
network:
# Allow access to the Jenkins webui which is useful when troubleshooting
- - forwarded_port
- guest: 8080
host: 9090
auto_correct: true
provisioner:
name: chef_zero
data_path: test/fixtures/keys
data_bags_path: test/fixtures/data_bags
attributes:
jenkins:
master:
host: localhost
install_method: war
mirror: https://updates.jenkins.io
runit:
sv_timeout: 30
# This is to help slaves to connect to the master
# Sometimes with slow performance the connection is dropped/cut too early
# 30 seconds was too low, so I bumped it to 5 minutes
# https://issues.jenkins-ci.org/browse/JENKINS-38623
jenkins_args: '--httpKeepAliveTimeout=300000'
platforms:
- name: amazonlinux
driver_config:
box: mvbcoding/awslinux
- name: centos-6
- name: centos-7
- name: debian-8
- name: debian-9
- name: ubuntu-14.04
- name: ubuntu-16.04
- name: windows-2012r2
driver:
box: chef/windows-server-2012r2-standard # private box
- name: windows-2016
driver:
box: chef/windows-server-2016-standard # private box
verifier:
name: inspec
suites:
#
# Smoke suite
#
- name: smoke_package_stable
run_list: jenkins_smoke::default
excludes:
- ubuntu-14.04
- windows-2012r2
- windows-2016
- name: smoke_package_current
run_list: jenkins_smoke::default
attributes:
jenkins:
master:
channel: current
excludes:
- ubuntu-14.04
- windows-2012r2
- windows-2016
- name: smoke_war_stable
run_list: jenkins_smoke::default
attributes:
jenkins:
master:
install_method: war
source: https://updates.jenkins.io/stable/latest/jenkins.war
- name: smoke_war_latest
run_list: jenkins_smoke::default
attributes:
jenkins:
master:
install_method: war
source: https://updates.jenkins.io/latest/jenkins.war
#
# Authentication suites
#
- name: authentication_private_key # Tested in smoke suite
run_list: jenkins_authentication::private_key
- name: authentication_username_password
run_list: jenkins_authentication::username_password
excludes:
- windows-2012r2
- windows-2016
#
# Proxy suites
# Cannot be tested together
# As the proxy settings are global
#
- name: jenkins_proxy_config # Tested in smoke suite
run_list: jenkins_proxy::config
- name: jenkins_proxy_remove
run_list: jenkins_proxy::remove