forked from sous-chefs/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen.yml
140 lines (125 loc) · 3.14 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
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
# Set httpKeepAliveTimeout to 5 minutes so that connections are not closed too early.
# This can happen when there is slow performance
# 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
# #
# # Job suites # Tested in smoke suite
# #
# - name: jenkins_job
# run_list:
# - jenkins_job::default
# #
# # Script suites # Tested in smoke suite
# #
# - name: jenkins_script
# run_list: jenkins_script::execute
# #
# # Plugin suites # Tested in smoke suite
# #
# - name: jenkins_plugin
# run_list: jenkins_plugin::default
#
# 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
# #
# # Slave suites # Tested in smoke suite
# #
# - name: jenkins_slave
# run_list:
# - jenkins_slave::default
# #
# # User suites # Tested in smoke suite
# #
# - name: jenkins_user
# run_list: jenkins_user::default