-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
575 lines (522 loc) · 21.5 KB
/
Jenkinsfile
File metadata and controls
575 lines (522 loc) · 21.5 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
// Global Variable so it can be changed between stages
def GIT_BRANCH_NAME=getGitBranchName()
pipeline {
agent {
kubernetes{
label 'slave-2cpu-8gb'
}
}
parameters {
string(name: 'REPOSITORY_SERVER', defaultValue: 'gcr.io/stack-test-186501', description: 'Registry server URL to pull/push images', trim: true)
string(name: 'NAMESPACE', defaultValue: 'default', description: 'In which namespace micro services needs to be deploy', trim: true)
string(name: 'CONNECTION_ID', defaultValue: 'test', description: 'connection id', trim: true)
string(name: 'WORKSPACE_ID', defaultValue: 'fullstack-pro', description: 'workspace id', trim: true)
string(name: 'UNIQUE_NAME', defaultValue: 'default', description: 'chart name', trim: true)
string(name: 'HEMERA_LOG_LEVEL', defaultValue: 'info', description: 'log level for hemera')
string(name: 'LOG_LEVEL', defaultValue: 'info', description: 'log level')
string(name: 'DEPLOYMENT_PATH', defaultValue: '/servers', description: 'folder path to load helm charts')
string(name: 'PUBLISH_BRANCH', defaultValue: 'devpublish', description: 'publish branch')
string(name: 'EXCLUDE_SETTING_NAMESPACE_FILTER', defaultValue: 'brigade', description: 'exclude setting namespace that matches search string')
string(name: 'GIT_CREDENTIAL_ID', defaultValue: 'fullstack-pro-github-deploy-key', description: 'jenkins credential id of git deploy secret')
string(name: 'REPOSITORY_SSH_URL', defaultValue: 'git@github.com:cdmbase/fullstack-pro.git', description: 'ssh url of the git repository')
string(name: 'REPOSITORY_BRANCH', defaultValue: 'develop', description: 'the branch of repository')
string(name: 'DEVELOP_BRANCH', defaultValue: 'develop', description: 'Develop branch as default for the development.')
string(name: 'MASTER_BRANCH', defaultValue: 'master', description: 'Master branch as default branch for production.')
// by default first value of the choice will be choosen
choice choices: ['auto', 'force'], description: 'Choose merge strategy', name: 'NPM_PUBLISH_STRATEGY'
choice choices: ['yarn', 'npm'], description: 'Choose build strategy', name: 'BUILD_STRATEGY'
choice choices: ['0.4.0', '0.3.0', '0.1.22'], description: 'Choose Idestack chart version', name: 'IDESTACK_CHART_VERSION'
choice choices: ['nodejs14', 'nodejs12'], description: 'Choose NodeJS version', name: 'NODEJS_TOOL_VERSION'
choice choices: ['buildOnly', 'buildAndTest', 'buildAndPublish', 'mobileBuild', 'mobilePreview', 'devDeployOnly', 'stageDeploy', 'prodDeploy', 'prodDeployOnly', 'allenv'], description: 'Where to deploy micro services?', name: 'ENV_CHOICE'
booleanParam (defaultValue: false, description: 'Tick to enable debug mode', name: 'ENABLE_DEBUG')
string(name: 'BUILD_TIME_OUT', defaultValue: '120', description: 'Build timeout in minutes', trim: true)
}
// Setup common + secret key variables for pipeline.
environment {
BUILD_COMMAND = getBuildCommand()
PYTHON='/usr/bin/python'
GCR_KEY = credentials('jenkins-gcr-login-key')
EXPO_TOKEN = credentials('expo_cdmbase_token')
GIT_PR_BRANCH_NAME = getGitPrBranchName()
GITHUB_HELM_REPO_TOKEN = credentials('github-helm-repo-access-token')
}
// Initialize npm and docker commands using plugins
tools {
nodejs params.NODEJS_TOOL_VERSION
}
stages {
stage('define environment') {
steps {
// skip the build if ends with `[skip ci]` which is equivalent to regex `.*\[skip ci\]$`
scmSkip(deleteBuild: true, skipPattern:'.*\\[skip ci\\]\\s')
checkout([$class: 'GitSCM', branches: [[name: '*/'+ params.REPOSITORY_BRANCH]],
doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'WipeWorkspace']],
submoduleCfg: [], userRemoteConfigs: [[credentialsId: params.GIT_CREDENTIAL_ID, url: params.REPOSITORY_SSH_URL]]])
sh "git checkout ${env.GIT_PR_BRANCH_NAME}"
// env.NODEJS_HOME = "${tool 'node_v8'}"
// env.PATH="${env.NODEJS_HOME}/bin:${env.PATH}"
//sh 'npm --version'
}
}
stage('Unlock secrets'){ //unlock keys for all runs
environment{ deployment_env = 'dev' }
steps{
sh '''
gpg --import /tmp/gpg-public-key/gpg-public-key.pub
gpg --import /tmp/gpg-private-key/gpg-private-key.key
git-crypt unlock
'''
load "./jenkins_variables.groovy"
// if we need to load stag configuration for different location.
// sh "curl -H 'Authorization: token ${env.GITHUB_ACCESS_TOKEN}' -H 'Accept: application/vnd.github.v3.raw' -O -L https://raw.githubusercontent.com/cdmbase/kube-orchestration/master/idestack/values-stage.yaml"
}
}
// Install packages. If
// a. any branch
// b. ENV_CHOICE set not selected `dev`, `stage` or `prod`
stage ('Install git repository'){
steps{
sh """
echo "what is docker git version $GIT_BRANCH_NAME -- ${params.ENV_CHOICE}"
${params.BUILD_STRATEGY} install
${params.BUILD_STRATEGY} run lerna
"""
}
}
stage ('Mobile Build'){
when {
expression { params.ENV_CHOICE == 'mobileBuild' || params.ENV_CHOICE == 'mobilePreview' }
}
steps{
sh """
rm .npmrc
lerna exec --scope=*mobile-device ${params.BUILD_STRATEGY} ${env.BUILD_COMMAND}
"""
}
}
// Run build for all cases except when ENV_CHOICE is 'buildAndPublish' and `dev`, `stage` or `prod`
stage ('Build Packages'){
when {
expression { params.ENV_CHOICE == 'buildOnly' || params.ENV_CHOICE == 'buildAndTest' || params.ENV_CHOICE == 'buildAndPublish' }
}
steps{
sh """
${params.BUILD_STRATEGY} run build
"""
}
}
// Test build for all cases except when ENV_CHOICE is 'buildAndPublish' and `dev`, `stage` or `prod`
stage ('Test Packages'){
when {
expression { params.ENV_CHOICE == 'buildAndTest' }
}
steps{
sh """
${params.BUILD_STRATEGY} run test
"""
}
}
// if PR is from branch other than `develop` then merge to `develop` if we chose ENV_CHOICE as 'buildAndPublish'.
// Skip this stage. Future implementation.
stage ('Merge PR, Install, Build'){
when {
expression { params.ENV_CHOICE == '1' }
}
steps{
sh """
git checkout ${params.DEVELOP_BRANCH}
git merge ${env.GIT_PR_BRANCH_NAME} -m 'auto merging'
${params.BUILD_STRATEGY} install
${params.BUILD_STRATEGY} run lerna
${params.BUILD_STRATEGY} run build
"""
script {
GIT_BRANCH_NAME = params.DEVELOP_BRANCH
}
}
}
// publish packages to npm repository.
// commit new package-lock.json that might get generated during install
// Build will be ignore with tag '[skip ci]'
stage ('Publish Packages'){
when {
expression { GIT_BRANCH_NAME == params.DEVELOP_BRANCH }
expression { params.ENV_CHOICE == 'buildOnly' || params.ENV_CHOICE == 'buildAndPublish' }
}
steps{
script {
GIT_BRANCH_NAME=params.PUBLISH_BRANCH
}
sshagent (credentials: [params.GIT_CREDENTIAL_ID]) {
sh """
git add -A
git diff --staged --quiet || git commit -am 'auto build\r\n[skip ci]'
git fetch origin ${params.DEVELOP_BRANCH}
git checkout ${params.DEVELOP_BRANCH}
${params.BUILD_STRATEGY} run devpublish:${params.NPM_PUBLISH_STRATEGY};
git push origin ${params.DEVELOP_BRANCH}
git checkout ${params.PUBLISH_BRANCH}
"""
}
}
}
stage('Docker login'){
steps{
sh 'cat "$GCR_KEY" | docker login -u _json_key --password-stdin https://gcr.io'
}
}
stage('Dev Docker Images') {
options {
timeout(time: params.BUILD_TIME_OUT, unit: 'MINUTES')
}
when {
// Docker build need be performed in PUBLISH branch only
expression { GIT_BRANCH_NAME == params.PUBLISH_BRANCH }
expression { params.ENV_CHOICE == 'buildOnly' }
}
// Below variable is only set to load all (variables, functions) from jenkins_variables.groovy file.
environment{ deployment_env = 'dev' }
steps{
load "./jenkins_variables.groovy"
script {
def servers = getDirs(pwd() + params.DEPLOYMENT_PATH)
def parallelStagesMap = servers.collectEntries {
["${it}" : generateBuildStage(it)]
}
parallel parallelStagesMap
}
}
}
// Below are dev stages
stage('Dev deployment') {
environment{
deployment_env = 'dev'
}
when {
expression { GIT_BRANCH_NAME == params.PUBLISH_BRANCH || GIT_BRANCH_NAME == params.DEVELOP_BRANCH }
expression { params.ENV_CHOICE == 'buildOnly' || params.ENV_CHOICE == 'devDeployOnly' }
beforeInput true
}
steps {
withKubeConfig([credentialsId: 'kubernetes-preproduction-1-cluster', serverUrl: 'https://35.243.206.245']) {
sh """
helm repo add stable https://charts.helm.sh/stable
helm repo add incubator https://charts.helm.sh/incubator
helm repo add kube-orchestration https://"""+ GITHUB_HELM_REPO_TOKEN +"""@raw.githubusercontent.com/cdmbase/kube-orchestration/develop
helm repo update
"""
script {
nameSpaceCheck = sh(script: "kubectl get ns | tr '\\n' ','", returnStdout: true)
if (!nameSpaceCheck.contains(params.NAMESPACE)) { sh "kubectl create ns " + params.NAMESPACE }
def servers = getDirs(pwd() + params.DEPLOYMENT_PATH)
def parallelStagesMap = servers.collectEntries {
["${it}" : generateStage(it, deployment_env)]
}
parallel parallelStagesMap
}
}
}
} // End of dev deployment code block.
// Only master branch will be merged
stage ('Merge Develop to master & Install'){
when {
expression { GIT_BRANCH_NAME == params.MASTER_BRANCH }
expression { params.ENV_CHOICE == 'stageDeploy' || params.ENV_CHOICE == 'prodDeploy' }
}
steps{
sh """
git checkout ${params.REPOSITORY_BRANCH}
git merge origin/${params.DEVELOP_BRANCH} -m 'auto merging'
${params.BUILD_STRATEGY} install
${params.BUILD_STRATEGY} run lerna
${params.BUILD_STRATEGY} run build
"""
script {
GIT_BRANCH_NAME = params.REPOSITORY_BRANCH
}
}
}
// Run build for all cases except when ENV_CHOICE is 'buildAndPublish' and `dev`, `stage` or `prod`
stage ('Prod Build Packages'){
when {
expression { GIT_BRANCH_NAME == params.MASTER_BRANCH }
expression { params.ENV_CHOICE == 'stageDeploy' || params.ENV_CHOICE == 'prodDeploy' }
}
steps{
sh """
${params.BUILD_STRATEGY} run build
"""
}
}
// publish packages to npm repository.
// commit new package-lock.json that might get generated during install
// Build will be ignore with tag '[skip ci]'
stage ('Prod Publish Packages'){
when {
expression { GIT_BRANCH_NAME == params.MASTER_BRANCH }
expression { params.ENV_CHOICE == 'stageDeploy' || params.ENV_CHOICE == 'prodDeploy' }
}
steps{
script {
GIT_BRANCH_NAME=params.PUBLISH_BRANCH
}
sshagent (credentials: [params.GIT_CREDENTIAL_ID]) {
sh """
git add -A
git diff --staged --quiet || git commit -am 'auto build\r\n[skip ci]'
git fetch origin ${params.MASTER_BRANCH}
git checkout ${params.MASTER_BRANCH}
${params.BUILD_STRATEGY} run publish:${params.NPM_PUBLISH_STRATEGY};
git checkout ${params.PUBLISH_BRANCH}
"""
}
}
}
// Build Docker containers for production.
stage('Prod Docker Images') {
options {
timeout(time: params.BUILD_TIME_OUT, unit: 'MINUTES')
}
when {
// required to be in Publish branch to build docker
expression { GIT_BRANCH_NAME == params.PUBLISH_BRANCH }
expression { params.ENV_CHOICE == 'stageDeploy' || params.ENV_CHOICE == 'prodDeploy' }
}
// Below variable is only set to load all (variables, functions) from jenkins_variables.groovy file.
environment{ deployment_env = 'prod' }
steps{
load "./jenkins_variables.groovy"
script {
def servers = getDirs(pwd() + params.DEPLOYMENT_PATH)
def parallelStagesMap = servers.collectEntries {
["${it}" : generateBuildStage(it)]
}
parallel parallelStagesMap
}
}
} // End of production docker build.
// Below are stage code block
stage('Stage Deployment') {
options {
timeout(time: 300, unit: 'SECONDS')
}
environment{
deployment_env = 'stage'
}
when {
expression { GIT_BRANCH_NAME == params.MASTER_BRANCH || GIT_BRANCH_NAME == params.PUBLISH_BRANCH }
expression {params.ENV_CHOICE == 'stageDeploy' || params.ENV_CHOICE == 'prodDeploy'}
beforeInput true
}
steps {
load "./jenkins_variables.groovy"
withKubeConfig([credentialsId: 'kubernetes-dev-cluster', serverUrl: 'https://0.0.0.0']) {
sh """
helm repo add stable https://charts.helm.sh/stable
helm repo add incubator https://charts.helm.sh/incubator
helm repo add kube-orchestration https://"""+ GITHUB_HELM_REPO_TOKEN +"""@raw.githubusercontent.com/cdmbase/kube-orchestration/develop
helm repo update
"""
script {
nameSpaceCheck = sh(script: "kubectl get ns | tr '\\n' ','", returnStdout: true)
if (!nameSpaceCheck.contains(params.NAMESPACE)) { sh "kubectl create ns " + params.NAMESPACE }
def servers = getDirs(pwd() + params.DEPLOYMENT_PATH)
def parallelStagesMap = servers.collectEntries {
["${it}" : generateStage(it, deployment_env)]
}
parallel parallelStagesMap
}
}
}
} // End of staging deployment code block.
// Below are production stages
stage('Prod Deployment') {
options {
timeout(time: 300, unit: 'SECONDS')
}
environment{
deployment_env = 'prod'
}
when {
expression { GIT_BRANCH_NAME == params.MASTER_BRANCH || GIT_BRANCH_NAME == params.PUBLISH_BRANCH }
expression { params.ENV_CHOICE == 'prodDeploy' || params.ENV_CHOICE == 'prodDeployOnly' }
beforeInput true
}
input {
message "Want to deploy fullstack-pro on prod cluster?"
parameters {
choice choices: ['yes', 'no'], description: 'Want to deploy micro service on prod?', name: 'PROD_DEPLOYMENT'
}
}
steps {
load "./jenkins_variables.groovy"
withKubeConfig([credentialsId: 'kubernetes-prod-cluster', serverUrl: 'https://104.196.165.88']) {
sh """
helm repo add stable https://charts.helm.sh/stable
helm repo add incubator https://charts.helm.sh/incubator
helm repo add kube-orchestration https://"""+ GITHUB_HELM_REPO_TOKEN +"""@raw.githubusercontent.com/cdmbase/kube-orchestration/develop
helm repo update
"""
script {
nameSpaceCheck = sh(script: "kubectl get ns | tr '\\n' ','", returnStdout: true)
if (!nameSpaceCheck.contains(params.NAMESPACE)) { sh "kubectl create ns " + params.NAMESPACE }
def servers = getDirs(pwd() + params.DEPLOYMENT_PATH)
def parallelStagesMap = servers.collectEntries {
["${it}" : generateStage(it, deployment_env)]
}
parallel parallelStagesMap
}
}
}
} // End of production deployment code block.
}
post {
always {
deleteDir()
}
success{
slackSend (color: '#00FF00', message: "SUCCESSFUL: Job '${env.JOB_NAME}' BUILD NUMBER: '${env.BUILD_NUMBER}' Job success. click <${env.RUN_DISPLAY_URL}|here> to see the log.", channel: 'idestack-automation')
}
failure{
slackSend (color: '#FF0000', message: "FAILED: Job '${env.JOB_NAME}' BUILD NUMBER: '${env.BUILD_NUMBER}' Job failed. click <${env.RUN_DISPLAY_URL}|here> to see the log.", channel: 'idestack-automation')
}
}
}
def getBuildCommand(){
if(params.ENV_CHOICE == 'mobileBuild'){
return 'build:auto'
}
if(params.ENV_CHOICE == 'mobilePreview'){
return 'build:preview'
}
if(params.ENABLE_DEBUG.toBoolean()){
return 'build:debug'
} else {
return 'build'
}
}
def getGitPrBranchName() {
// The branch name could be in the BRANCH_NAME or GIT_BRANCH variable depending on the type of job
//def branchName = env.BRANCH_NAME ? env.BRANCH_NAME : env.GIT_BRANCH
//return branchName || ghprbSourceBranch
if(env.ghprbSourceBranch){
return env.ghprbSourceBranch
} else {
return params.REPOSITORY_BRANCH
}
}
def getGitBranchName(){ // we can place some conditions in future
if(env.ghprbSourceBranch){
return env.ghprbSourceBranch
} else {
return params.REPOSITORY_BRANCH
}
}
@NonCPS
//TODO: Fix below get method for Jenkins slave if possible.
def getDirs1(path){
def currentDir = new File(path)
def dirs = []
currentDir.eachDir() {
dirs << it.name
}
return dirs
}
// Below function to work in Jenkins slave
def getDirs(path){
def currentDir = sh(script: "ls -CF "+path+" | tr '/' ' '", returnStdout: true)
def dirs = []
(currentDir.split()).each {
dirs << "${it}"
}
return dirs
}
def generateStage(server, environmentType) {
return {
stage("stage: ${server}") {
echo "This is ${server}."
def filterExist = "${server}".contains(params.EXCLUDE_SETTING_NAMESPACE_FILTER)
def namespace = filterExist ? '' : "--namespace=${params.NAMESPACE}"
def name = getName(pwd() + "${params.DEPLOYMENT_PATH}/${server}/package.json")
def version = getVersion(pwd() + params.DEPLOYMENT_PATH + "/${server}/package.json")
def valuesFile = "values-${environmentType}.yaml"
// deploy anything matching `*backend-server` or `*frontend-server` to use idestack chart
try{
if ("${server}".endsWith("backend-server") | "${server}".endsWith("frontend-server")) {
echo "add deployment flag to - ${server} "
if ("${server}".endsWith("frontend-server")){
deployment_flag = " --set backend.enabled='false' --set external.enabled='true'"
}
if ("${server}".endsWith("backend-server")){
deployment_flag = " --set frontend.enabled='false' --set external.enabled='false' --set ingress.enabled=false "
}
sh """
helm upgrade -i \
${UNIQUE_NAME}-${server} \
-f "${valuesFile}" \
${namespace} \
${deployment_flag} \
--set frontend.image="${REPOSITORY_SERVER}/${name}" \
--set frontend.imageTag=${version} \
--set backend.image="${REPOSITORY_SERVER}/${name}" \
--set backend.imageTag=${version} \
--set settings.workspaceId="${WORKSPACE_ID}" \
--set frontend.pullPolicy=Always \
--set backend.pullPolicy=Always \
--version=${IDESTACK_CHART_VERSION} \
kube-orchestration/idestack
"""
} else {
sh """
cd .${params.DEPLOYMENT_PATH}/${server}
helm upgrade -i \
${UNIQUE_NAME}-${server}-api \
-f "charts/chart/${valuesFile}" \
${namespace} \
--set image.repository=${REPOSITORY_SERVER}/${name} \
--set image.tag=${version} \
charts/chart
"""
}
} catch (Exception err) {
slackSend (color: '#FF0000', message: "FAILED: Job '${env.JOB_NAME}' BUILD NUMBER: '${env.BUILD_NUMBER}' Job failed in stage deployment ${server}. click <${env.RUN_DISPLAY_URL}|here> to see the log. Error: ${err.toString()}", channel: 'idestack-automation')
println err
throw(err)
}
}
}
}
// Docker build parllel loop
def generateBuildStage(server) {
return {
stage("stage: ${server}") {
try{
echo "This is ${server}."
def name = getName(pwd() + params.DEPLOYMENT_PATH + "/${server}/package.json")
def version = getVersion(pwd() + params.DEPLOYMENT_PATH + "/${server}/package.json")
sh """
lerna exec --scope=*${server} ${params.BUILD_STRATEGY} run docker:${env.BUILD_COMMAND};
docker tag ${name}:${version} ${REPOSITORY_SERVER}/${name}:${version}
docker push ${REPOSITORY_SERVER}/${name}:${version}
docker rmi ${REPOSITORY_SERVER}/${name}:${version}
"""
} catch (e) {
slackSend (color: '#FF0000', message: "FAILED: Job '${env.JOB_NAME}' BUILD NUMBER: '${env.BUILD_NUMBER}' Job failed in stage docker-build ${server}. click <${env.RUN_DISPLAY_URL}|here> to see the log. Error: ${e}", channel: 'idestack-automation')
throw(e)
}
}
}
}
import groovy.json.JsonSlurper
def getVersion(json_file_path){
def inputFile = readFile(json_file_path)
def InputJSON = new JsonSlurper().parseText(inputFile)
def version = InputJSON.version
return version
}
def getName(json_file_path){
def inputFile = readFile(json_file_path)
def InputJSON = new JsonSlurper().parseText(inputFile)
def name = InputJSON.name
return name
}