-
Notifications
You must be signed in to change notification settings - Fork 28
/
Jenkinsfile
357 lines (328 loc) · 16.3 KB
/
Jenkinsfile
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
/**
* Parameters can be sent via build parameters, instead of changing the code.
* Use the same variable name to set the build parameters.
* List of parameters that can be passed
* appName='devops-demo-web-app'
* deployableName = 'PROD-US'
* componentName="web-app-v1.1"
* collectionName="release-1.0"
* exportFormat ='yaml'
* configFilePath = "k8s/helm/values.yml"
* exporterName ='returnAllData-now'
* exporterArgs = ''
*/
pipeline {
environment {
buildArtifactsPath = "build_artifacts/${currentBuild.number}"
validationResultsPath = ""
}
agent any
/**
* Jenkins pipline related variables
*/
stages {
// Initialize pipeline
stage('Initialize') {
steps {
script {
dockerImageName = "kekaichinose/web-app"
/**
* DevOps Config App related information
*/
appName = 'PaymentDemo'
deployableName = 'Production'
componentName = "web-api-v1.0"
collectionName = "release-1.0"
/**
* Configuration File information to be uploaded
*/
exportFormat = 'yaml'
configFilePath = "k8s/helm/values.yml"
/**
* Devops Config exporter related information
*/
exporterName = 'returnAllData-now'
exporterArgs = ''
/**
* Jenkins variables declared to be used in pipeline
*/
exportFileName = "${buildArtifactsPath}/export_file-${appName}-${deployableName}-${currentBuild.number}.${exportFormat}"
changeSetId = ""
dockerImageTag = ""
snapshotName = ""
snapshotObject = ""
isSnapshotCreated = false
isSnapshotValidateionRequired = false
isSnapshotPublisingRequired = false
buildNumberArfifact = "grefBuildId"
/**
* Checking for parameters
*/
if(params) {
echo "setting values from build parameter"
if(params.appName) {
appName = params.appName;
}
if(params.deployableName) {
deployableName = params.deployableName
}
if(params.componentName) {
componentName = params.componentName
}
if(params.collectionName) {
collectionName = params.collectionName
}
if(params.exportFormat) {
exportFormat = params.exportFormat
}
if(params.configFilePath) {
configFilePath = params.configFilePath
}
if(params.exporterName) {
exporterName = params.exporterName
}
if(params.exporterArgs) {
exporterArgs = params.exporterArgs
}
}
}
echo """---- Build Parameters ----
applicationName: ${appName}
namePath: ${componentName}
configFile: ${configFilePath}
dataFormat: ${exportFormat}
"""
}
}
// Build and publish application image
stage('Build') {
steps {
checkout scm
echo "scm checkout successful"
script {
dockerImageTag = env.BUILD_NUMBER
dockerImageNameTag = "${dockerImageName}" + ":" + "${dockerImageTag}"
snDevopsArtifactPayload = '{"artifacts": [{"name": "' + dockerImageName + '", "version": "' + "${dockerImageTag}" + '", "semanticVersion": "' + "0.1.${dockerImageTag}"+ '","repositoryName": "' + dockerImageName+ '"}, ],"stageName":"Build image","branchName": "main"}' ;
echo "Docker image artifact: ${dockerImageNameTag} "
echo "snDevopsArtifactPayload: ${snDevopsArtifactPayload} "
snDevOpsArtifact(artifactsPayload:snDevopsArtifactPayload)
}
}
}
// Validate code and config data
stage('Validate') {
parallel {
// Validate configuration data changes
stage('Config') {
stages('Config Steps') {
// Upload configuration data to DevOps Config
stage('Upload') {
steps {
sh "echo updaing configfile with build number"
sh "sed -i 's/${buildNumberArfifact}/${BUILD_NUMBER}/g' ${configFilePath}"
sh "echo uploading and auto-validating configuration file: ${configFilePath}"
script {
changeSetId = snDevOpsConfigUpload(
applicationName: "${appName}",
target: 'component',
namePath: "${componentName}",
configFile: "${configFilePath}",
autoCommit: 'true',
autoValidate: 'true',
dataFormat: "${exportFormat}"
)
echo "Changeset: $changeSetId created"
if(changeSetId != null) {
// // DevOps Change Enable
echo "Register changeset: ${changeSetId} to pipeline"
changeSetRegResult = snDevOpsConfigRegisterPipeline(
applicationName: "${appName}",
changesetNumber: "${changeSetId}"
)
echo "Pipeline registration result: ${changeSetRegResult}"
//
} else {
error "Changeset was not created"
}
}
}
}
// Auto-validation was set during upload; get status of snapshot
stage('Validate') {
steps {
echo "Triggering snDevOpsConfigGetSnapshots for applicationName:${appName},deployableName:${deployableName},changeSetId:${changeSetId}"
script {
changeSetResults = snDevOpsConfigGetSnapshots(
applicationName:"${appName}",
deployableName:"${deployableName}",
changesetNumber:"${changeSetId}",
showResults: false,
markFailed: false
)
if (!changeSetResults){
isSnapshotCreated=false
echo "No snapshots were created"
} else {
isSnapshotCreated = true;
echo "Changeset result : ${changeSetResults}"
def changeSetResultsObject = readJSON text: changeSetResults
changeSetResultsObject.each {
snapshotName = it.name
snapshotObject = it
}
snapshotValidationStatus = snapshotObject.validation
snapshotPublishedStatus = snapshotObject.published
}
}
script {
echo "Snapshot object : ${snapshotObject}"
validationResultsPath = "${snapshotName}_${currentBuild.projectName}_${currentBuild.number}.xml"
if(snapshotObject.validation == "passed" || snapshotObject.validation == "passed_with_exception") {
echo "Latest snapshot passed validation"
} else {
error "Latest snapshot failed"
}
}
}
}
// Publish snapshot now that it passed validation
stage('Publish') {
when {
expression { (snapshotValidationStatus == "passed" || snapshotValidationStatus == "passed_with_exception") && snapshotPublishedStatus == false }
}
steps {
script {
echo "Step to publish snapshot applicationName:${appName},deployableName:${deployableName} snapshotName:${snapshotName}"
publishSnapshotResults = snDevOpsConfigPublish(applicationName:"${appName}",deployableName:"${deployableName}",snapshotName: "${snapshotName}")
echo "Publish result for applicationName:${appName},deployableName:${deployableName} snapshotName:${snapshotName} is ${publishSnapshotResults} "
}
}
}
// Export published snapshot to be used by downstream deployment tools
stage('Export') {
steps {
script {
echo "Exporting config data for App: ${appName}, Deployable: ${deployableName}, Exporter: ${exporterName} "
echo "Export file name ${exportFileName}"
// create build artifacts dir if not created yet
sh "mkdir -p ${buildArtifactsPath}"
echo "<<<<<<<<< Starting config data export >>>>>>>>"
exportResponse = snDevOpsConfigExport(
applicationName: "${appName}",
snapshotName: "${snapshotObject.name}",
deployableName: "${deployableName}",
exporterFormat: "${exportFormat}",
fileName: "${exportFileName}",
exporterName: "${exporterName}",
exporterArgs: "${exporterArgs}"
)
echo "RESPONSE FROM EXPORT : ${exportResponse}"
}
}
}
}
}
// Validate application code changes (SIMULATED)
stage('Code') {
stages {
stage('jUnit Test'){
steps {
echo "Running unit tests..."
}
}
stage('SonarQube analysis') {
steps {
echo "Running code quality analysis..."
}
}
}
}
}
}
// Deploy configuration data to UAT environment
stage('UAT Deployment') {
steps {
sleep(time:5,unit:"SECONDS")
}
}
// Run functional tests
stage ('Functional Testing') {
parallel {
stage('Selenium API') {
steps {
echo "Selenium API..2..3..4"
sleep(time:5,unit:"SECONDS")
echo "Selenium API..2..3..4"
}
}
stage('Selenium UI') {
steps {
echo "Selenium UI..2..3..4"
sleep(time:7,unit:"SECONDS")
echo "Selenium API..2..3..4"
}
}
}
}
// Submit change management review
stage('Change Management') {
steps {
script {
// // DevOps Change Enable
echo "DevOps Change - trigger basic change request"
/* San Diego
snDevOpsChange()
*/
// Tokyo
snDevOpsChange(
applicationName: "${appName}",
snapshotName: "${snapshotName}"
)
//
/*echo "DevOps Change - trigger advanced change request"
snDevOpsChange(changeRequestDetails: """{
"setCloseCode": false,
"attributes": {
"category": "DevOps",
"priority": "3",
"cmdb_ci": {
"name": "Servers - PaymentDemo - Production"
},
"business_service": {
"name": "PaymentDemo_Production_1"
}
}
}""")
*/
}
}
}
// Deploy application code and configuration data to production environment
stage('Deploy to Production') {
steps {
script {
echo "Show exported config data from file name ${exportFileName}"
echo " ++++++++++++ BEGIN OF File Content ***************"
sh "cat ${exportFileName}"
echo " ++++++++++++ END OF File content ***************"
echo "Exported config data handed off to deployment tool"
echo "********************** BEGIN Deployment ****************"
echo "Applying docker image ${dockerImageNameTag}"
echo "********************** END Deployment ****************"
}
}
}
}
// NOTE: attach policy validation results to run (if the snapshot fails validation)
post {
always {
// create tests dir
sh "mkdir -p ${buildArtifactsPath}/tests"
// move policy validation results to build artifacts folder
sh "mv ${validationResultsPath} ${buildArtifactsPath}/tests/${validationResultsPath}"
// attach policy validation results
echo ">>>>> Displaying Test results <<<<<"
junit testResults: "${buildArtifactsPath}/tests/${validationResultsPath}", skipPublishingChecks: true
}
}
}