forked from sous-chefs/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.docker.yml
206 lines (183 loc) · 4.82 KB
/
.kitchen.docker.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
driver:
name: dokken
privileged: true # because Docker and SystemD/Upstart
chef_image: chef/chef
chef_version: current
transport:
name: dokken
provisioner:
name: dokken
verifier:
name: inspec
platforms:
- name: debian-7
driver:
image: debian:7
pid_one_command: /sbin/init
intermediate_instructions:
- RUN /usr/bin/apt-get update
- RUN /usr/bin/apt-get install lsb-release procps -y
- name: debian-8
driver:
image: debian:8
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update
- RUN /usr/bin/apt-get install lsb-release -y
- name: centos-5
driver:
image: centos:5
platform: rhel
pid_one_command: /sbin/init
intermediate_instructions:
- RUN yum install -y which initscripts
- name: centos-6
driver:
image: centos:6
platform: rhel
pid_one_command: /sbin/init
intermediate_instructions:
- RUN yum -y install which initscripts
- name: centos-7
driver:
image: centos:7
platform: rhel
pid_one_command: /usr/lib/systemd/systemd
intermediate_instructions:
- RUN yum -y install lsof which systemd-sysv initscripts
- name: fedora-latest
driver:
image: fedora:latest
pid_one_command: /usr/lib/systemd/systemd
intermediate_instructions:
- RUN dnf -y install yum which systemd-sysv initscripts
- name: ubuntu-12.04
driver:
image: ubuntu-upstart:12.04
pid_one_command: /sbin/init
intermediate_instructions:
- RUN /usr/bin/apt-get update
- name: ubuntu-14.04
driver:
image: ubuntu-upstart:14.04
pid_one_command: /sbin/init
intermediate_instructions:
- RUN /usr/bin/apt-get update
- name: ubuntu-16.04
driver:
image: ubuntu:16.04
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN /usr/bin/apt-get update
- name: opensuse-13.2
driver:
image: opensuse:13.2
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN zypper --non-interactive install aaa_base perl-Getopt-Long-Descriptive which net-tools
- name: opensuse-42.1
driver:
image: opensuse:42.1
pid_one_command: /bin/systemd
intermediate_instructions:
- RUN zypper --non-interactive install aaa_base perl-Getopt-Long-Descriptive which hostname
suites:
#
# Smoke suite
#
- name: smoke_package_latest
run_list: jenkins_server_wrapper::default
attributes:
jenkins:
master:
install_method: package
- name: smoke_war_stable
run_list: jenkins_server_wrapper::default
attributes:
jenkins:
master:
install_method: war
source: http://mirrors.jenkins-ci.org/war-stable/latest/jenkins.war
- name: smoke_war_latest
run_list: jenkins_server_wrapper::default
attributes:
jenkins:
master:
install_method: war
source: http://mirrors.jenkins-ci.org/war/latest/jenkins.war
#
# Authentication suites
#
- name: authentication_private_key
run_list: jenkins_authentication::private_key
- name: authentication_username_password
run_list: jenkins_authentication::username_password
#
# Command suites
#
- name: jenkins_command_execute
run_list: jenkins_command::execute
#
# Credentials suites
#
- name: jenkins_credentials_create
run_list: jenkins_credentials::create
- name: jenkins_credentials_delete
run_list: jenkins_credentials::delete
#
# Job suites
#
- name: jenkins_job_create
run_list:
- jenkins_job::create
- jenkins_job::create_folder
- name: jenkins_job_delete
run_list: jenkins_job::delete
- name: jenkins_job_disable
run_list: jenkins_job::disable
- name: jenkins_job_enable
run_list: jenkins_job::enable
- name: jenkins_job_build
run_list: jenkins_job::build
#
# Script suites
#
- name: jenkins_script
run_list: jenkins_script::execute
#
# Plugin suites
#
- name: jenkins_plugin_disable
run_list: jenkins_plugin::disable
- name: jenkins_plugin_enable
run_list: jenkins_plugin::enable
- name: jenkins_plugin_install
run_list: jenkins_plugin::install
- name: jenkins_plugin_uninstall
run_list: jenkins_plugin::uninstall
#
# Slave suites
#
- name: jenkins_slave_create
run_list:
- jenkins_slave::create_jnlp
- jenkins_slave::create_ssh
- name: jenkins_slave_delete
run_list:
- jenkins_slave::delete_jnlp
- jenkins_slave::delete_ssh
- name: jenkins_slave_connect
run_list: jenkins_slave::connect
- name: jenkins_slave_disconnect
run_list: jenkins_slave::disconnect
- name: jenkins_slave_online
run_list: jenkins_slave::online
- name: jenkins_slave_offline
run_list: jenkins_slave::offline
#
# User suites
#
- name: jenkins_user_create
run_list: jenkins_user::create
- name: jenkins_user_delete
run_list: jenkins_user::delete