This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 143
/
install_jenkins.sh
482 lines (440 loc) · 18.7 KB
/
install_jenkins.sh
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
#!/bin/bash
echo $@
function print_usage() {
cat <<EOF
Installs Jenkins and exposes it to the public through port 80 (login and cli are disabled)
Command
$0
Arguments
--jenkins_fqdn|-jf [Required] : Jenkins FQDN
--vm_private_ip|-pi : The VM private ip used to configure Jenkins URL. If missing, jenkins_fqdn will be used instead
--jenkins_release_type|-jrt : The Jenkins release type (LTS or weekly or verified). By default it's set to LTS
--jenkins_version_location|-jvl : Url used to specify the version of Jenkins.
--service_principal_type|-sp : The type of service principal: MSI or manual.
--service_principal_id|-sid : The service principal ID.
--service_principal_secret|-ss : The service principal secret.
--subscription_id|-subid : The subscription ID of the SP.
--tenant_id|-tid : The tenant id of the SP.
--artifacts_location|-al : Url used to reference other scripts/artifacts.
--sas_token|-st : A sas token needed if the artifacts location is private.
--cloud_agents|-ca : The type of the cloud agents: aci, vm or no.
--resource_group|-rg : the resource group name.
--location|-lo : the resource group location.
EOF
}
function throw_if_empty() {
local name="$1"
local value="$2"
if [ -z "$value" ]; then
echo "Parameter '$name' cannot be empty." 1>&2
print_usage
exit -1
fi
}
function run_util_script() {
local script_path="$1"
shift
curl --silent "${artifacts_location}${script_path}${artifacts_location_sas_token}" | sudo bash -s -- "$@"
local return_value=$?
if [ $return_value -ne 0 ]; then
>&2 echo "Failed while executing script '$script_path'."
exit $return_value
fi
}
function retry_until_successful {
counter=0
"${@}"
while [ $? -ne 0 ]; do
if [[ "$counter" -gt 20 ]]; then
exit 1
else
let counter++
fi
sleep 5
"${@}"
done;
}
#defaults
artifacts_location="https://raw.githubusercontent.com/Azure/azure-devops-utils/master/"
jenkins_version_location="https://raw.githubusercontent.com/Azure/azure-devops-utils/master/jenkins/jenkins-verified-ver"
azure_web_page_location="/usr/share/nginx/azure"
jenkins_release_type="LTS"
while [[ $# > 0 ]]
do
key="$1"
shift
case $key in
--jenkins_fqdn|-jf)
jenkins_fqdn="$1"
shift
;;
--vm_private_ip|-pi)
vm_private_ip="$1"
shift
;;
--jenkins_release_type|-jrt)
jenkins_release_type="$1"
shift
;;
--jenkins_version_location|-jvl)
jenkins_version_location="$1"
shift
;;
--service_principal_type|-sp)
service_principal_type="$1"
shift
;;
--service_principal_id|-spid)
service_principal_id="$1"
shift
;;
--service_principal_secret|-ss)
service_principal_secret="$1"
shift
;;
--subscription_id|-subid)
subscription_id="$1"
shift
;;
--tenant_id|-tid)
tenant_id="$1"
shift
;;
--artifacts_location|-al)
artifacts_location="$1"
shift
;;
--sas_token|-st)
artifacts_location_sas_token="$1"
shift
;;
--cloud_agents|-ca)
cloud_agents="$1"
shift
;;
--resource_group|-rg)
resource_group="$1"
shift
;;
--location|-lo)
location="$1"
shift
;;
--help|-help|-h)
print_usage
exit 13
;;
*)
echo "ERROR: Unknown argument '$key' to script '$0'" 1>&2
exit -1
esac
done
throw_if_empty --jenkins_fqdn $jenkins_fqdn
throw_if_empty --jenkins_release_type $jenkins_release_type
if [[ "$jenkins_release_type" != "LTS" ]] && [[ "$jenkins_release_type" != "weekly" ]] && [[ "$jenkins_release_type" != "verified" ]]; then
echo "Parameter jenkins_release_type can only be 'LTS' or 'weekly' or 'verified'! Current value is '$jenkins_release_type'"
exit 1
fi
if [ -z "$vm_private_ip" ]; then
#use port 80 for public fqdn
jenkins_url="http://${jenkins_fqdn}/"
else
#use port 8080 for internal
jenkins_url="http://${vm_private_ip}:8080/"
fi
jenkins_auth_matrix_conf=$(cat <<EOF
<authorizationStrategy class="hudson.security.ProjectMatrixAuthorizationStrategy">
<permission>com.cloudbees.plugins.credentials.CredentialsProvider.Create:authenticated</permission>
<permission>com.cloudbees.plugins.credentials.CredentialsProvider.Delete:authenticated</permission>
<permission>com.cloudbees.plugins.credentials.CredentialsProvider.ManageDomains:authenticated</permission>
<permission>com.cloudbees.plugins.credentials.CredentialsProvider.Update:authenticated</permission>
<permission>com.cloudbees.plugins.credentials.CredentialsProvider.View:authenticated</permission>
<permission>hudson.model.Computer.Build:authenticated</permission>
<permission>hudson.model.Computer.Configure:authenticated</permission>
<permission>hudson.model.Computer.Connect:authenticated</permission>
<permission>hudson.model.Computer.Create:authenticated</permission>
<permission>hudson.model.Computer.Delete:authenticated</permission>
<permission>hudson.model.Computer.Disconnect:authenticated</permission>
<permission>hudson.model.Hudson.Administer:authenticated</permission>
<permission>hudson.model.Hudson.ConfigureUpdateCenter:authenticated</permission>
<permission>hudson.model.Hudson.Read:authenticated</permission>
<permission>hudson.model.Hudson.RunScripts:authenticated</permission>
<permission>hudson.model.Hudson.UploadPlugins:authenticated</permission>
<permission>hudson.model.Item.Build:authenticated</permission>
<permission>hudson.model.Item.Cancel:authenticated</permission>
<permission>hudson.model.Item.Configure:authenticated</permission>
<permission>hudson.model.Item.Create:authenticated</permission>
<permission>hudson.model.Item.Delete:authenticated</permission>
<permission>hudson.model.Item.Discover:authenticated</permission>
<permission>hudson.model.Item.Move:authenticated</permission>
<permission>hudson.model.Item.Read:authenticated</permission>
<permission>hudson.model.Item.Workspace:authenticated</permission>
<permission>hudson.model.Run.Delete:authenticated</permission>
<permission>hudson.model.Run.Replay:authenticated</permission>
<permission>hudson.model.Run.Update:authenticated</permission>
<permission>hudson.model.View.Configure:authenticated</permission>
<permission>hudson.model.View.Create:authenticated</permission>
<permission>hudson.model.View.Delete:authenticated</permission>
<permission>hudson.model.View.Read:authenticated</permission>
<permission>hudson.scm.SCM.Tag:authenticated</permission>
<permission>hudson.model.Hudson.Read:anonymous</permission>
<permission>hudson.model.Item.Discover:anonymous</permission>
<permission>hudson.model.Item.Read:anonymous</permission>
</authorizationStrategy>
EOF
)
jenkins_location_conf=$(cat <<EOF
<?xml version='1.0' encoding='UTF-8'?>
<jenkins.model.JenkinsLocationConfiguration>
<adminAddress>address not configured yet <nobody@nowhere></adminAddress>
<jenkinsUrl>${jenkins_url}</jenkinsUrl>
</jenkins.model.JenkinsLocationConfiguration>
EOF
)
jenkins_disable_reverse_proxy_warning=$(cat <<EOF
<disabledAdministrativeMonitors>
<string>hudson.diagnosis.ReverseProxySetupMonitor</string>
</disabledAdministrativeMonitors>
EOF
)
jenkins_agent_port="<slaveAgentPort>5378</slaveAgentPort>"
nginx_reverse_proxy_conf=$(cat <<EOF
server {
listen 80;
server_name ${jenkins_fqdn};
error_page 403 /jenkins-on-azure;
location / {
proxy_set_header Host \$host:\$server_port;
proxy_set_header X-Real-IP \$remote_addr;
proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto \$scheme;
# Fix the “It appears that your reverse proxy set up is broken" error.
proxy_pass http://localhost:8080;
proxy_redirect http://localhost:8080 http://${jenkins_fqdn};
proxy_read_timeout 90;
}
location /cli {
rewrite ^ /jenkins-on-azure permanent;
}
location ~ /login* {
rewrite ^ /jenkins-on-azure permanent;
}
location /jenkins-on-azure {
alias ${azure_web_page_location};
}
}
EOF
)
# Add repositories public keys
wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add -
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -
if [ "$jenkins_release_type" == "weekly" ]; then
sudo sh -c 'echo deb http://pkg.jenkins.io/debian binary/ > /etc/apt/sources.list.d/jenkins.list'
else
sudo sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list'
fi
sudo add-apt-repository ppa:openjdk-r/ppa --yes
echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/azure-cli.list
wget -q -O - https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo apt-get install apt-transport-https
sudo apt-get update --yes
#install openjdk8
sudo apt-get install openjdk-8-jre openjdk-8-jre-headless openjdk-8-jdk --yes
#install jenkins
if [[ ${jenkins_release_type} == 'verified' ]]; then
jenkins_version=$(curl --silent "${jenkins_version_location}")
deb_file=jenkins_${jenkins_version}_all.deb
wget -q "https://pkg.jenkins.io/debian-stable/binary/${deb_file}"
if [[ -f ${deb_file} ]]; then
sudo dpkg -i ${deb_file}
sudo apt-get install -f --yes
else
echo "Failed to download ${deb_file}. The initialization is terminated!"
exit -1
fi
else
sudo apt-get install jenkins --yes
sudo apt-get install jenkins --yes # sometime the first apt-get install jenkins command fails, so we try it twice
fi
retry_until_successful sudo test -f /var/lib/jenkins/secrets/initialAdminPassword
retry_until_successful run_util_script "jenkins/run-cli-command.sh" -c "version"
#We need to install workflow-aggregator so all the options in the auth matrix are valid
plugins=(azure-vm-agents windows-azure-storage matrix-auth workflow-aggregator azure-app-service tfs azure-acs azure-container-agents)
for plugin in "${plugins[@]}"; do
run_util_script "jenkins/run-cli-command.sh" -c "install-plugin $plugin -deploy"
done
#allow anonymous read access
inter_jenkins_config=$(sed -zr -e"s|<authorizationStrategy.*</authorizationStrategy>|{auth-strategy-token}|" /var/lib/jenkins/config.xml)
final_jenkins_config=${inter_jenkins_config//'{auth-strategy-token}'/${jenkins_auth_matrix_conf}}
echo "${final_jenkins_config}" | sudo tee /var/lib/jenkins/config.xml > /dev/null
#set up Jenkins URL to private_ip:8080 so JNLP connections can be established
echo "${jenkins_location_conf}" | sudo tee /var/lib/jenkins/jenkins.model.JenkinsLocationConfiguration.xml > /dev/null
#disable 'It appears that your reverse proxy set up is broken' warning.
# This is visible when connecting through SSH tunneling
inter_jenkins_config=$(sed -zr -e"s|<disabledAdministrativeMonitors/>|{disable-reverse-proxy-token}|" /var/lib/jenkins/config.xml)
final_jenkins_config=${inter_jenkins_config//'{disable-reverse-proxy-token}'/${jenkins_disable_reverse_proxy_warning}}
echo "${final_jenkins_config}" | sudo tee /var/lib/jenkins/config.xml > /dev/null
#Open a fixed port for JNLP
inter_jenkins_config=$(sed -zr -e"s|<slaveAgentPort.*</slaveAgentPort>|{slave-agent-port}|" /var/lib/jenkins/config.xml)
final_jenkins_config=${inter_jenkins_config//'{slave-agent-port}'/${jenkins_agent_port}}
echo "${final_jenkins_config}" | sudo tee /var/lib/jenkins/config.xml > /dev/null
#restart jenkins
sudo service jenkins restart
#install the service principal
msi_cred=$(cat <<EOF
<com.microsoft.azure.util.AzureMsiCredentials>
<scope>GLOBAL</scope>
<id>azure_service_principal</id>
<description>Local MSI</description>
<msiPort>50342</msiPort>
</com.microsoft.azure.util.AzureMsiCredentials>
EOF
)
sp_cred=$(cat <<EOF
<com.microsoft.azure.util.AzureCredentials>
<scope>GLOBAL</scope>
<id>azure_service_principal</id>
<description>Manual Service Principal</description>
<data>
<subscriptionId>${subscription_id}</subscriptionId>
<clientId>${service_principal_id}</clientId>
<clientSecret>${service_principal_secret}</clientSecret>
<oauth2TokenEndpoint>https://login.windows.net/${tenant_id}</oauth2TokenEndpoint>
<serviceManagementURL>https://management.core.windows.net/</serviceManagementURL>
<tenant>${tenant_id}</tenant>
<authenticationEndpoint>https://login.microsoftonline.com/</authenticationEndpoint>
<resourceManagerEndpoint>https://management.azure.com/</resourceManagerEndpoint>
<graphEndpoint>https://graph.windows.net/</graphEndpoint>
</data>
</com.microsoft.azure.util.AzureCredentials>
EOF
)
retry_until_successful run_util_script "jenkins/run-cli-command.sh" -c "version"
if [ "${service_principal_type}" == 'msi' ]; then
echo "${msi_cred}" > msi_cred.xml
run_util_script "jenkins/run-cli-command.sh" -c "create-credentials-by-xml system::system::jenkins _" -cif msi_cred.xml
rm msi_cred.xml
else
echo "${sp_cred}" > sp_cred.xml
run_util_script "jenkins/run-cli-command.sh" -c "create-credentials-by-xml system::system::jenkins _" -cif sp_cred.xml
rm sp_cred.xml
fi
#add cloud agents
vm_agent_conf=conf=$(cat <<EOF
<clouds>
<com.microsoft.azure.vmagent.AzureVMCloud>
<name>AzureVMAgents</name>
<cloudName>AzureVMAgents</cloudName>
<credentialsId>azure_service_principal</credentialsId>
<maxVirtualMachinesLimit>10</maxVirtualMachinesLimit>
<resourceGroupReferenceType>existing</resourceGroupReferenceType>
<existingResourceGroupName>${resource_group}</existingResourceGroupName>
<vmTemplates>
<com.microsoft.azure.vmagent.AzureVMAgentTemplate>
<templateName>win-agent</templateName>
<labels>win</labels>
<location>${location}</location>
<virtualMachineSize>Standard_D1_v2</virtualMachineSize>
<storageAccountNameReferenceType>new</storageAccountNameReferenceType>
<diskType>managed</diskType>
<storageAccountType>Standard_LRS</storageAccountType>
<noOfParallelJobs>1</noOfParallelJobs>
<usageMode>NORMAL</usageMode>
<shutdownOnIdle>false</shutdownOnIdle>
<imageTopLevelType>basic</imageTopLevelType>
<builtInImage>Windows Server 2016</builtInImage>
<credentialsId>agent_admin_account</credentialsId>
<retentionTimeInMin>60</retentionTimeInMin>
</com.microsoft.azure.vmagent.AzureVMAgentTemplate>
<com.microsoft.azure.vmagent.AzureVMAgentTemplate>
<templateName>linux-agent</templateName>
<labels>linux</labels>
<location>${location}</location>
<virtualMachineSize>Standard_D1_v2</virtualMachineSize>
<storageAccountNameReferenceType>new</storageAccountNameReferenceType>
<diskType>managed</diskType>
<storageAccountType>Standard_LRS</storageAccountType>
<noOfParallelJobs>1</noOfParallelJobs>
<usageMode>NORMAL</usageMode>
<shutdownOnIdle>false</shutdownOnIdle>
<imageTopLevelType>basic</imageTopLevelType>
<builtInImage>Ubuntu 16.04 LTS</builtInImage>
<credentialsId>agent_admin_account</credentialsId>
<retentionTimeInMin>60</retentionTimeInMin>
</com.microsoft.azure.vmagent.AzureVMAgentTemplate>
</vmTemplates>
<deploymentTimeout>1200</deploymentTimeout>
<approximateVirtualMachineCount>0</approximateVirtualMachineCount>
</com.microsoft.azure.vmagent.AzureVMCloud>
</clouds>
EOF
)
aci_agent_conf=$(cat <<EOF
<clouds>
<com.microsoft.jenkins.containeragents.aci.AciCloud>
<name>AciAgents</name>
<credentialsId>azure_service_principal</credentialsId>
<resourceGroup>${resource_group}</resourceGroup>
<templates>
<com.microsoft.jenkins.containeragents.aci.AciContainerTemplate>
<name>aciagents</name>
<image>jenkinsci/jnlp-slave</image>
<osType>Linux</osType>
<command>jenkins-slave -url \${rootUrl} \${secret} \${nodeName}</command>
<rootFs>/home/jenkins</rootFs>
<timeout>10</timeout>
<cpu>1</cpu>
<memory>1.5</memory>
<retentionStrategy class="com.microsoft.jenkins.containeragents.strategy.ContainerOnceRetentionStrategy" />
</com.microsoft.jenkins.containeragents.aci.AciContainerTemplate>
</templates>
</com.microsoft.jenkins.containeragents.aci.AciCloud>
</clouds>
EOF
)
agent_admin_password=$(head /dev/urandom | tr -dc A-Z | head -c 4)$(head /dev/urandom | tr -dc a-z | head -c 4)$(head /dev/urandom | tr -dc 0-9 | head -c 4)'!@'
agent_admin_cred=$(cat <<EOF
<com.cloudbees.plugins.credentials.impl.UsernamePasswordCredentialsImpl>
<scope>GLOBAL</scope>
<id>agent_admin_account</id>
<description>the admin account for the vm agents</description>
<username>agentadmin</username>
<password>${agent_admin_password}</password>
</com.cloudbees.plugins.credentials.impl.UsernamePasswordCredentialsImpl>
EOF
)
if [ "${cloud_agents}" == 'vm' ]; then
echo "${agent_admin_cred}" > agent_admin_cred.xml
run_util_script "jenkins/run-cli-command.sh" -c "create-credentials-by-xml system::system::jenkins _" -cif agent_admin_cred.xml
rm agent_admin_cred.xml
inter_jenkins_config=$(sed -zr -e"s|<clouds/>|{clouds}|" /var/lib/jenkins/config.xml)
final_jenkins_config=${inter_jenkins_config//'{clouds}'/${vm_agent_conf}}
echo "${final_jenkins_config}" | sudo tee /var/lib/jenkins/config.xml > /dev/null
elif [ "${cloud_agents}" == 'aci' ]; then
inter_jenkins_config=$(sed -zr -e"s|<clouds/>|{clouds}|" /var/lib/jenkins/config.xml)
final_jenkins_config=${inter_jenkins_config//'{clouds}'/${aci_agent_conf}}
echo "${final_jenkins_config}" | sudo tee /var/lib/jenkins/config.xml > /dev/null
fi
#install nginx
sudo apt-get install nginx --yes
#configure nginx
echo "${nginx_reverse_proxy_conf}" | sudo tee /etc/nginx/sites-enabled/default > /dev/null
#don't show version in headers
sudo sed -i "s|.*server_tokens.*|server_tokens off;|" /etc/nginx/nginx.conf
#install jenkins-on-azure web page
run_util_script "jenkins/jenkins-on-azure/install-web-page.sh" -u "${jenkins_fqdn}" -l "${azure_web_page_location}" -al "${artifacts_location}" -st "${artifacts_location_sas_token}"
#restart nginx
sudo service nginx restart
# Restart Jenkins
#
# As of Jenkins 2.107.3, reload-configuration is not sufficient to instruct Jenkins to pick up all the configuration
# updates gracefully. Jenkins will be trapped in the blank SetupWizard mode after initial user setup, and the user
# cannot proceed their work on the Jenkins instance.
#
# A restart will do the full reloading.
sudo service jenkins restart
# Wait until Jenkins is fully startup and functioning.
retry_until_successful run_util_script "jenkins/run-cli-command.sh" -c "version"
#install common tools
sudo apt-get install git --yes
sudo apt-get install azure-cli --yes