-
Notifications
You must be signed in to change notification settings - Fork 266
/
Copy pathJenkinsfile
199 lines (182 loc) · 5.76 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
library identifier: "[email protected]",
retriever: modernSCM(
[
$class: "GitSCMSource",
remote: "https://github.com/redhat-cop/pipeline-library.git"
]
)
def currentState = 'green'
def newState = 'blue'
def pom_file = ''
def version = ''
openshift.withCluster() {
env.TARGET = env.BUILD_CONTEXT_DIR ? "${env.BUILD_CONTEXT_DIR}/target" : "target"
env.APP_NAME = "${JOB_NAME}".replaceAll(/-build.*/, '')
env.BUILD = openshift.project()
env.DEV = "${APP_NAME}-dev"
env.STAGE = "${APP_NAME}-stage"
env.PROD = "${APP_NAME}-prod"
echo "Starting Pipeline for ${APP_NAME}..."
}
pipeline {
agent {
label 'maven'
}
stages {
stage('Git Checkout') {
steps {
git url: "${APPLICATION_SOURCE_REPO}", branch: "${APPLICATION_SOURCE_REF}"
}
}
stage('pom information') {
steps {
script {
pom_file = env.BUILD_CONTEXT_DIR ? "${env.BUILD_CONTEXT_DIR}/pom.xml" : "pom.xml"
version = getVersionFromPom(pom_file)
def artifactId = getArtifactIdFromPom(pom_file)
def groupId = getGroupIdFromPom(pom_file)
println("Artifact ID: ${artifactId}, Group ID: ${groupId}")
println("New version tag: ${version}")
}
}
}
stage('Build') {
steps {
sh "mvn -B clean install -DskipTests=true -f ${pom_file}"
}
}
stage('Unit Test') {
steps {
sh "mvn -B test -f ${pom_file}"
}
}
stage('Build Container Image'){
steps {
sh """
ls ${TARGET}/*
rm -rf oc-build && mkdir -p oc-build/deployments
for t in \$(echo "jar;war;ear" | tr ";" "\\n"); do
cp -rfv ./${TARGET}/*.\$t oc-build/deployments/ 2> /dev/null || echo "No \$t files"
done
"""
binaryBuild(projectName: BUILD, buildConfigName: APP_NAME, buildFromPath: "oc-build")
}
}
stage('Promote from Build to Dev') {
steps {
tagImage(sourceImageName: APP_NAME, sourceImagePath: BUILD, toImagePath: DEV)
}
}
stage('Verify Deployment to Dev') {
steps {
verifyDeployment(projectName: DEV, targetApp: APP_NAME)
}
}
stage('Integration Test') {
steps {
echo "TODO: Add application integration testing, verify db connectivity, rest calls ..."
}
}
stage('Promote from Dev to Stage') {
steps {
tagImage(sourceImageName: APP_NAME, sourceImagePath: DEV, toImagePath: STAGE, toImageTag: version)
script {
println("New version tag:" + version)
openshift.withCluster() {
openshift.withProject(STAGE) {
def dc = openshift.selector("dc/${APP_NAME}").object()
def trigger_patch = [
["type":"ImageChange",
"imageChangeParams":[
"automatic": true,
"containerNames": [APP_NAME],
"from":[
"kind":"ImageStreamTag",
"namespace":STAGE,
"name":"${APP_NAME}:${version}"
]
]
],
["type":"ConfigChange"]
]
dc.spec.triggers = trigger_patch
openshift.apply(dc)
}
}
}
}
}
stage('Verify Deployment to Stage') {
steps {
verifyDeployment(projectName: STAGE, targetApp: APP_NAME)
}
}
stage('Promote from Stage to Prod') {
steps {
script {
println("New version tag:" + version)
openshift.withCluster() {
openshift.withProject(PROD) {
def activeService = openshift.selector("route/${APP_NAME}").object().spec.to.name
if (activeService == "${APP_NAME}-blue") {
newState = 'green'
currentState = 'blue'
}
def dc = openshift.selector("dc/${APP_NAME}-${newState}").object()
def trigger_patch = [
["type":"ImageChange",
"imageChangeParams":[
"automatic": true,
"containerNames": ["${APP_NAME}-${newState}"],
"from":[
"kind":"ImageStreamTag",
"namespace":PROD,
"name":"${APP_NAME}-${newState}:${version}"
]
]
],
["type":"ConfigChange"]
]
dc.spec.triggers = trigger_patch
openshift.apply(dc)
}
}
}
tagImage(sourceImageName: APP_NAME, sourceImagePath: DEV, toImagePath: PROD, toImageName: "${APP_NAME}-${newState}", toImageTag: version)
}
}
stage('Verify Deployment to Prod') {
steps {
verifyDeployment(projectName: PROD, targetApp: "${APP_NAME}-${newState}")
}
}
stage('Switch route to new version') {
steps {
script {
input "Switch ${PROD} from ${currentState} to ${newState} deployment?"
openshift.withCluster() {
openshift.withProject(PROD) {
def route = openshift.selector("route/${APP_NAME}").object()
route.spec.to.name = "${APP_NAME}-${newState}"
openshift.apply(route)
}
}
}
}
}
}
}
// Convenience Functions to read variables from the pom.xml
// Do not change anything below this line.
def getVersionFromPom(pom) {
def matcher = readFile(pom) =~ '<version>(.+)</version>'
matcher ? matcher[0][1] : null
}
def getGroupIdFromPom(pom) {
def matcher = readFile(pom) =~ '<groupId>(.+)</groupId>'
matcher ? matcher[0][1] : null
}
def getArtifactIdFromPom(pom) {
def matcher = readFile(pom) =~ '<artifactId>(.+)</artifactId>'
matcher ? matcher[0][1] : null
}