-
Notifications
You must be signed in to change notification settings - Fork 77
/
JenkinsPipelineNotes
305 lines (174 loc) · 5.31 KB
/
JenkinsPipelineNotes
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
Pipeline as code
Pipeline : Set of Jobs executed one after the other
We can write the code to create a Build pipeline and deployment pipeline
There are 2 types of syntax in which we can write the Jenkins pipeline code
1. Scripted pipeline syntax
> when Jenkins version 1 was released
> It is written in DSL - Domain specific language
> really good and have knowledge on DSL on order to write the scripts
> Is very complex
> there is no proper structure of writing script
> names of job, build steps, triggers, conditions
> it become difficult for people to understand and execute them
> It never validates the code for syntax error
> it starts executing the script from the begining and any systax error occurs, the pipeline fails
> after the fixing the issue, you have to execute the pipeline form the begining
node{
}
2. Declarative Pipeline syntax
> with jenkins version 2 was released
> This syntax is also based groovy script, which is declarative scripting in nature
for example: key value
name 'sonal'
company 'edureka'
course 'devops'
tool 'Jenkins'
> This syntax provides a defined structure to your pipeline code
> we have to follow the strucure while writing the code
> because of which, reading and writing this syntax is easy
> Jenkins provides a tool --> Declarative pipeline snippet generator
> This tool is used to automatically generate pipeline code based on users input
> You can directly use the code in the pipeline.
> Before execution of the pipeline , jenkins will validate the code and give you syntax error
> Suppose a stage in the pipeline fails, you can fix the issue and restart the pipeline forma particular stage
Structure of Declartive pipeline code:
pipeline {
// comments
tools{
OPTIONAL
provide information about which version of tools that will used to build the pipeline
you will write the code in declartaive format
tool 'nameof the tool'
tools configured as part of global tool configuration
}
agent {
MANDATORY
// list of VMs where you jobs have to be executed
right now for us, we will execute on the current jenkins machine
}
stages{
stage('Job1')
{
triggers{
// give tirigger information
}
steps{
mandatory
// what should jenkins execute
// conditions
}
post {
success{
// post build actions
}
}
}
stage('Job2')
{
triggers{
// give tirigger information
}
steps{
mandatory
// what should jenkins execute
}
post {
success{
// post build actions
}
}
}
stage('Job3')
{
triggers{
// give tirigger information
}
steps{
mandatory
// what should jenkins execute
}
post {
success{
// post build actions
}
}
}
stage('Job4')
{
triggers{
// give tirigger information
}
steps{
mandatory
// what should jenkins execute
}
post {
success{
// post build actions
}
}
}
}
}
pipeline {
agent any
environment {
NEWSTORES = "${sh(script:'cat /home/ait_l2/newstores_gcp', returnStdout: true)}"
}
stages {
stage('init_env') {
steps {
echo "NEWSTORES = ${env.NEWSTORES}"
}
}
stage('CM+_pin') {
steps {
build 'gcp_CM+_pin'
}
}
stage('deploy_table_trigger') {
steps {
build 'deploy_table_triggers'
}
}
stage('deploy_table_trigger_stream') {
steps {
build 'deploy_table_triggers_stream'
}
}
stage('copy_magic_portal_files') {
steps {
build 'copy_mp_files'
}
}
stage('deploy_magic_portal') {
steps {
build 'deploy_mp_files'
}
}
stage('create_partition_on_apidb') {
steps {
sh label: '', script: "/usr/bin/ssh [email protected] 'sh /home/postgres/partition.sh ${env.NEWSTORES}'"
In jenkins we have a concept of JenkinsFile
With this jenkisn allows you to write pipeline code outside of Jenkisn server and maintain it in VCtool
Jenkins allows you to write pipeline code in file with name Jenkinsfile
The name of the file will be same and it has no extension
Inside this file you directly write the piplein code with stages, tools, environment information
you save and maintain this file in github repo
Team members can update the file --> commit history, version can be maintained
This file can be fetched by jenkins and execute the stages therby creating a pipeline in Jnekins server
**********************************
Multibranch Pipeline
*************************
I github repository in this repo we have various branch
Branch related to:
Dev ==> src ==> compile, review, build, deploy(dev)
QA ==> compile, review, test, build, deploy(qa)
UAT ==> ompile, review, test, build, deploy(uat), UAT Testing
prod ==> the final build ==> deploy on production server
We have to create pipline for every branch
these pipelines should be created automatically in jenkins
the pipeline should have the name same as that of the branch
if the branch is deleted in github, automtically the pipeline job should also get deleted
the pipeline jobs have to be created only for dev, qa and uat and not for production
Pipeline code should be mainted in github -- Jenkisnfile