-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile1
More file actions
3093 lines (2482 loc) · 59.8 KB
/
file1
File metadata and controls
3093 lines (2482 loc) · 59.8 KB
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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
install latest patches
---
sudo su
apt update
apt upgrade -y
install java 21
---
apt install openjdk-21-jdk -y
install jenkins -- https://www.jenkins.io/doc/book/installing/linux/#debianubuntu
--
wget -O /usr/share/keyrings/jenkins-keyring.asc https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key
echo "deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc]" https://pkg.jenkins.io/debian-stable binary/ | tee /etc/apt/sources.list.d/jenkins.list > /dev/null
apt update
apt install jenkins -y
access jenkins
---
http://{your ubuntu01 ip}:8080/
get inial admin password
---
cat /var/lib/jenkins/secrets/initialAdminPassword
Configure jenkins
---
password from previous command
Customize Jenkins page -- select "install suggested plugins"
Create First Admin User:
username: admin
Password: admin
Confirm password: admin
Full name: Adminiustrator
E-mail address: admin@admin.com
save and continue
save and finish
start using jenkins
Login to your github account and fork the repo
---
https://github.com/sathishbob/jenkins_test
generate a key pair on jenkins
--
ssh-keygen
Enter file in which to save the key (/root/.ssh/id_rsa): -- Press Enter
Enter passphrase (empty for no passphrase): -- Press Enter
Enter same passphrase again: -- Press Enter
copy the contenet of public key
---
cat /root/.ssh/id_rsa.pub
Add the public key to the user level in git hub
---
user profile icon -- settings-- ssh and gpg keys -- new ssh key
title -- jenkins
key -- public key content
ADD ssh key
add the private key to the jenkins
---
dashboard -- manage jenkins -- credentials -- system -- global credentials -- add credentials
kind : ssh username with private key
ID : github
Username: git
Private Key: select "enter directlry"
add
paster the output of command - cat /root/.ssh/id_rsa
Create
install git on jenkins
---
apt install git -y
Get repo url
---
github -- repo -- code -- ssh
Create a jenkins job to pull source code
---
dashboard -- New item
Enter an item name : javaapp
select -- freestyle project
source code management -- select git
Repository URL -- repo ssh url (git@github.com:{your github id}/jenkins_test.git)
Credentials -- select "git"
save
Change the git ssh option
---
Dashboard -- manage jenkins -- security
Git Host Key Verification Configuration
Host Key Verification Strategy -- accept first connection
save
Check error is gone on job source code management section
---
Dashboard -- javaapp -- Configuration -- source code management
Run the job
--
Dashboard -- javaapp -- build now
Install maven in global tools
---
dashboard -- manage jenkins -- tools -- Maven installations -- Add Maven
Name: MVN3
version: 3.9.9
Name: MVN2
version: 2.2.1
Save
Add build step to the job
---
Dashboard -- javaapp -- Configuration -- Build Steps -- Add Build step
Invoke top-level Maven targets
Maven Version : MVN3
Goals: clean package
Advanced:
POM : api-gateway/
save
Build Now
Add post build steop to archive the jar file and test report
---
Dashboard -- javaapp -- Configuration -- Build Steps -- Add Post-build Actions
Archive the artifacts
Files to archive: api-gateway/target/*.jar
Publish JUnit test result report
Test report XMLs : api-gateway/target/surefire-reports/*.xml
Create new branches in git hub
---
git hub -- your repo -- branches -- new brach
dev
test
Modify the job to allow the user to input the branch
---
Dashboard -- javaapp -- Configuration -- General -- select "This project is parameterized" -- Add parameters
String parameter
Name: BRANCH
Default Value: master
Description: Please enter the branch name to build
update the source code managenet to use the variable insted of master codes value "master"
Source code management -- git
Branches to build
Branch Specifier (blank for 'any')
*/${BRANCH}
save
Build with parameter-- dev
Build
Day 2
====
Power on lab server
---
vmware workstation --
ubuntu-01 -- power on
ubuntu-02 -- power on
server-19 -- power on
access jenkins
---
http://{your ubuntu01 ip}:8080/
Modify the job to change parameter type from string to choice
---
Dashboard -- javaapp -- Configuration -- General -- select "This project is parameterized" -- delete string parameter
Add parameters -- Choice Parameter
Name: BRANCH
Choices:
master
dev
test
Description: 1
save
Build with parameter-- test
Install git parameter plugin
---
Dashboard -- Manage Jenkins -- Plugins -- Avaliable plugins
Git Parameter
select and install
Select "Restart Jenkins when installation is complete and no jobs are running"
Modify the job to change parameter type from choice to git
---
Dashboard -- javaapp -- Configuration -- General -- select "This project is parameterized" -- delete string parameter
Add parameters -- git Parameter
Name: BRANCH
Description: Please select the branch name to build
Parameter Type: Bramch
Default Value: origin/master
update the source code managenet to use the variable without path
Source code management -- git
Branches to build
Branch Specifier (blank for 'any')
${BRANCH}
save
Create new branches in git hub
---
git hub -- your repo -- branches -- new branch
qa
Build with parameter-- origin/qa
Cron expression
--
* * * * *
Minutes
hour
day
month
Day of the week
Every day at 10 AM - 0 10 * * *
Every day at 10 PM - 0 22 * * *
Every weekday at 10 PM - 0 22 * * 1,2,3,4,5
Every weekday at 10 PM - 0 22 * * 1-5
every month first day 10 am - 0 10 1 * *
every quarter first day 10 am - 0 10 1 1,3,6,9 *
every quarter first day 10 am - 0 10 1 */4 *
every 2 minutes - */2 * * * *
Modify the job to run every 2 minutes
---
Dashboard -- javaapp -- Configuration -- triggeres
Select Build periodically
*/2 * * * *
Modify the job to run every 2 minutes butr create build only when a change is avaliable in repo
---
Dashboard -- javaapp -- Configuration -- triggeres
uncheck Build periodically
Select poll scm
*/2 * * * *
you will see a new option git polling log
Add a commit to repo and see whether the job is triggerd
Create a new pipeline job
---
dashboard -- new item -- javapipeline -- pipeline -- create
pipeline:
v
save
Build now
To view the pipeline graph
---
Dashboard -- Manage Jenkins -- Appearance
Pipeline graph view -- select
Show pipeline graph on job page
Show pipeline graph on build page
save
Rewrite the pipeline to have multiple stages
---
pipeline {
agent any
tools {
// Install the Maven version configured as "M3" and add it to the path.
maven "MVN3"
}
stages {
stage('pull scm') {
steps {
// Get some code from a GitHub repository
git credentialsId: 'github', url: 'git@github.com:{your github id}/jenkins_test.git'
}
}
stage('Build') {
steps {
sh "mvn -Dmaven.test.failure.ignore=true -f api-gateway/ clean package"
}
}
stage('archive') {
steps {
archiveArtifacts artifacts: 'api-gateway/target/*.jar', followSymlinks: false
}
}
stage('publish test result') {
steps {
junit 'api-gateway/target/surefire-reports/*.xml'
}
}
}
}
Modify the pipeline to get the pipeline from repo
---
dashboard -- javapipeline -- configure -- pipeline
Definition : Pipeline script form SCM
SCM : git
Repositories -- Repository URL
credentails -- git
Script Path : Jenkinsfile
triggers
Select poll scm
* * * * *
save
In the repo update jenkins file
---
git hub -- your repo -- Jenkins file
pipeline {
agent any
tools {
// Install the Maven version configured as "M3" and add it to the path.
maven "MVN3"
}
stages {
stage('pull scm') {
steps {
// Get some code from a GitHub repository
git credentialsId: 'github', url: 'git@github.com:{your github id}/jenkins_test.git'
}
}
stage('Build') {
steps {
sh "mvn -Dmaven.test.failure.ignore=true -f api-gateway/ clean package"
}
}
stage('archive') {
steps {
archiveArtifacts artifacts: 'api-gateway/target/*.jar', followSymlinks: false
}
}
stage('publish test result') {
steps {
junit 'api-gateway/target/surefire-reports/*.xml'
}
}
}
}
commit changes
Modify the jenkins file in repo to add a new stage
---
pipeline {
agent any
tools {
// Install the Maven version configured as "M3" and add it to the path.
maven "MVN3"
}
stages {
stage('pull scm') {
steps {
// Get some code from a GitHub repository
git credentialsId: 'github', url: 'git@github.com:{your github id}/jenkins_test.git'
}
}
stage('Build') {
steps {
sh "mvn -Dmaven.test.failure.ignore=true -f api-gateway/ clean package"
}
}
stage('archive') {
steps {
archiveArtifacts artifacts: 'api-gateway/target/*.jar', followSymlinks: false
}
}
stage('publish test result') {
steps {
junit 'api-gateway/target/surefire-reports/*.xml'
}
}
stage('test') {
steps {
sh "echo testing"
}
}
}
}
Jenkins pipeline documentation
---
https://www.jenkins.io/doc/book/pipeline/
Create a new pipeline job
---
dashboard -- new item -- parameter -- pipeline -- create
pipeline:
pipeline {
agent any
stages{
stage("setup parameter") {
steps {
script {
properties([
parameters([
choice(
choices: ["dev", "uat", "prod"],
name: "ENVIRONMENT"
),
string(
defaultValue: "training",
name: "STRING"
)
])
])
}
}
}
stage("print parameter") {
steps {
echo "choice parameter is $ENVIRONMENT"
echo "string parameter is $STRING"
}
}
}
}
save
build
It will be a failure
Build with parameter
Modifyt the pipeline to add triggeres
---
pipeline {
agent any
triggers {
cron("*/5 * * * *")
}
stages{
stage("setup parameter") {
steps {
script {
properties([
parameters([
choice(
choices: ["dev", "uat", "prod"],
name: "ENVIRONMENT"
),
string(
defaultValue: "training",
name: "STRING"
)
])
])
}
}
}
stage("print parameter") {
steps {
echo "choice parameter is $ENVIRONMENT"
echo "string parameter is $STRING"
}
}
}
}
Connect to ubuntu-02 node via putty
---
Connect to ubunto-02 via putty
---
open VM Login Details.txt file in your lab server desktop and get the ip/username/password
connect via putty
sudo su
apt update
install java 21
---
apt install openjdk-21-jdk -y
Install git
---
apt install git -y
Add the node in master
---
Dashboard -- managejenkins -- nodes -- new node
Node name : linux
select "Permenant agent"
Create
Number of executors: 2
Remote root directory: /home/palmeto
Labels: linux
Usage: "Only build jobs with label expression matching this node"
Launch method: "Launch agent via ssh"
Host: {ubuntu 2 ip address}
Credentials:
Add
kind: User name with password
Username: palmeto
password: palmeto
ID: linux
ADD
Select palmeto from list
Host Key Verification Strategy : Non verifying verification statergy
save
Check linux is in sync
Configure a job to run on a node
--
Dashboard -- javaapp -- Configuration -- general
select "Restrict where this project can be run"
Label Expression: linux
save
build with parameter
Update the pipeline to run the job on linux node
----
pipeline {
agent {
label 'linux'
}
tools {
// Install the Maven version configured as "M3" and add it to the path.
maven "MVN3"
}
stages {
stage('pull scm') {
steps {
// Get some code from a GitHub repository
git credentialsId: 'github', url: 'git@github.com:{your github id}/jenkins_test.git'
}
}
stage('Build') {
steps {
sh "mvn -Dmaven.test.failure.ignore=true -f api-gateway/ clean package"
}
}
stage('archive') {
steps {
archiveArtifacts artifacts: 'api-gateway/target/*.jar', followSymlinks: false
}
}
stage('publish test result') {
steps {
junit 'api-gateway/target/surefire-reports/*.xml'
}
}
stage('test') {
steps {
sh "echo testing"
}
}
}
}
Update the pipeline to run a particular stage on a node
---
pipeline {
agent any
tools {
// Install the Maven version configured as "M3" and add it to the path.
maven "MVN3"
}
stages {
stage('pull scm') {
steps {
// Get some code from a GitHub repository
git credentialsId: 'github', url: 'git@github.com:{your github id}/jenkins_test.git'
}
}
stage('Build') {
steps {
sh "mvn -Dmaven.test.failure.ignore=true -f api-gateway/ clean package"
}
}
stage('archive') {
steps {
archiveArtifacts artifacts: 'api-gateway/target/*.jar', followSymlinks: false
}
}
stage('publish test result') {
steps {
junit 'api-gateway/target/surefire-reports/*.xml'
}
}
stage('test') {
agent {
label 'linux'
}
steps {
sh "echo testing"
}
}
}
}
Login to windows node in vmware
---
vmware -- server 19
vm -- send "ctrl+ alt+ del"
Login with password
Install jdk
---
https://download.oracle.com/java/21/latest/jdk-21_windows-x64_bin.exe
Install git bash
---
https://github.com/git-for-windows/git/releases/download/v2.49.0.windows.1/Git-2.49.0-64-bit.exe
Enable tcp port for inbound agent
--
dashboard -- mange -- security -- Agents
TCP port for inbound agents -- select "Fixed"
50000
save
Add the node in master
---
Dashboard -- managejenkins -- nodes -- new node
Node name : windows
select "Permenant agent"
Create
Number of executors: 2
Remote root directory: C:\jenkins
Labels: windows
Usage: "Only build jobs with label expression matching this node"
Launch method: "Launch agent by connecting it to the controller"
save
click on windows node
Copy the command below "Run from agent command line: (Windows) "
open command prompt as administrator in windows node and pater the copied command
---
sample:
curl.exe -sO http://192.168.0.201:8080/jnlpJars/agent.jar
java -jar agent.jar -url http://192.168.0.201:8080/ -secret 6b5ba35e8be7d64b0076f96350dbbdaa29edd280d78f6542e78925c9d3896179 -name windows -webSocket -workDir "C:\jenkins"
Check node is in sync
---
Dashboard -- managejenkins -- nodes
Configure a job to run on a windows node
--
Dashboard -- javaapp -- Configuration -- general
select "Restrict where this project can be run"
Label Expression: windows
save
build with parameter
Variables in pipeline
---
dashboard -- new item -- variable -- pipeline -- create
pipeline {
agent any
environment {
TRAINING = "devops"
TOPIC = "jenkins"
}
stages {
stage('local') {
environment {
TOPIC = "cicd"
}
steps {
sh "echo training is ${TRAINING} and topic is ${TOPIC}"
}
}
stage('global') {
steps {
sh "echo training is ${TRAINING} and topic is ${TOPIC}"
}
}
}
}
save
build
Condition in pipeline
---
dashboard -- new item -- Condition -- pipeline -- create
pipeline {
agent any
environment {
BUILD = "${currentBuild.getNumber() % 2}"
}
stages {
stage("normal") {
steps {
echo "job with condition"
}
}
stage("condition") {
when{
environment name: "BUILD", value: "0"
}
steps {
echo "build number is even"
}
}
}
}
save
build
loop in pipeline
---
dashboard -- new item -- Condition -- pipeline -- create
def map = [training: "devops", topic: "jenkins", lab: "onprem" ]
pipeline {
agent any
stages {
stage("loop") {
steps {
script {
map.each { entry ->
stage(entry.key) {
echo "$entry.value"
}
}
}
}
}
}
}
save
build
Parallel in pipeline
----
dashboard -- new item -- parallel -- pipeline -- create
pipeline {
agent any
stages {
stage("normal") {
steps {
echo "I am running in sequence"
}
}
stage("parallel") {
parallel {
stage("firefox") {
steps {
echo "I am testing in firefox"
}
}
stage("safari") {
steps {
echo "I am testing in safari"
}
}
stage("chrome") {
steps {
echo "I am testing in chrome"
}
}
stage("edge") {
steps {
echo "I am testing in edge"
}
}
}
}
}
}
save
build
Approval in pipeline
---
dashboard -- new item -- approval -- pipeline -- create
pipeline {
agent any
stages {
stage("pull") {
steps {
echo "pulling code"
}
}
stage("build") {
steps {
echo "building code"
}
}
stage("approval") {
steps {
input "Please approve to proceed with deployment"
}
}
stage ("deployment") {
steps {
echo "deploying application"
}
}
}
}
save
build
in the build 1 -- click "paused for input" -- click proceed
build
in the build 2 -- click "paused for input" -- click abort
Modify the job to have a time out for approval process
---
dashboard -- approval -- configure -- pipeline
pipeline {
agent any
stages {
stage("pull") {
steps {
echo "pulling code"
}
}
stage("build") {
steps {
echo "building code"
}
}
stage("approval") {
options {
timeout(time:1, unit: 'MINUTES')
}
steps {
input "Please approve to proceed with deployment"
}
}
stage ("deployment") {
steps {
echo "deploying application"
}
}
}
}
build
dont provide approval, it will exit after a minute
.
build
in the new build -- click "paused for input" -- click proceed
Day 3
====
Power on lab server
---
vmware workstation --
ubuntu-01 -- power on
connect via putty and Switch to root user
---
sudo su
install docker
---
Add Docker's official GPG key:
---
apt update
apt install ca-certificates curl -y