-
Notifications
You must be signed in to change notification settings - Fork 70
/
Jenkinsfile
293 lines (263 loc) · 11.4 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
@NonCPS
def notifyGitHub(state) {
sh "curl -u ${env.USER_PASS} -d '${state}' -H 'Content-Type: application/json' -X POST ${env.PR_STATUS_URI}"
}
def getGitHubPullRequest() {
def output = sh(returnStdout: true, script: "curl -u ${env.USER_PASS} -H 'Content-Type: application/json' -X GET ${env.PR_URI}")
def json = readJSON text: output
return json
}
def clearProjects(){
sh """
oc delete project $PR_CI_CD_PROJECT_NAME || rc=\$?
oc delete project $PR_DEV_PROJECT_NAME || rc=\$?
oc delete project $PR_TEST_PROJECT_NAME || rc=\$?
while \${unfinished}
do
oc get project $PR_CI_CD_PROJECT_NAME || \
oc get project $PR_DEV_PROJECT_NAME || \
oc get project $PR_TEST_PROJECT_NAME || unfinished=false
done
"""
}
pipeline {
agent {
label "master"
}
environment {
// Global Vars
JOB_NAME = "${JOB_NAME}".replace("/", "-")
GIT_SSL_NO_VERIFY = true
URL_TO_TEST = "https://google.com"
PR_GITHUB_USERNAME = "labs-robot"
}
// The options directive is for configuration that applies to the whole job.
options {
buildDiscarder(logRotator(numToKeepStr:'10'))
timeout(time: 35, unit: 'MINUTES')
// ansiColor('xterm')
// timestamps()
}
stages {
stage("Prepare Environment") {
agent {
node {
label "master"
}
}
steps {
echo "Setting up environment variables"
script {
env.OCP_API_SERVER = "${env.OPENSHIFT_API_URL}"
env.OCP_TOKEN = readFile('/var/run/secrets/kubernetes.io/serviceaccount/token').trim()
// Get the PR ID
timeout(time: 1, unit: 'HOURS') {
env.PR_ID = input(
id: 'userInput', message: 'Which PR # do you want to test?', parameters: [
[$class: 'StringParameterDefinition', description: 'PR #', name: 'pr']
])
if (env.PR_ID == null || env.PR_ID == ""){
error('PR_ID cannot be null or empty')
}
}
env.PR_CI_CD_PROJECT_NAME = "labs-ci-cd-pr-${env.PR_ID}"
env.PR_DEV_PROJECT_NAME = "labs-dev-pr-${env.PR_ID}"
env.PR_TEST_PROJECT_NAME = "labs-test-pr-${env.PR_ID}"
env.PR_GITHUB_TOKEN = new String("oc get secret labs-robot-github-oauth-token --template='{{.data.password}}'".execute().text.minus("'").minus("'").decodeBase64())
if (env.PR_GITHUB_TOKEN == null || env.PR_GITHUB_TOKEN == ""){
error('PR_GITHUB_TOKEN cannot be null or empty')
}
env.USER_PASS = "${env.PR_GITHUB_USERNAME}:${env.PR_GITHUB_TOKEN}"
env.PR_BRANCH = "pull/${env.PR_ID}/head"
env.PR_URI = "https://api.github.com/repos/rht-labs/labs-ci-cd/pulls/${env.PR_ID}"
env.PR_STATUS_URI = getGitHubPullRequest().statuses_url
echo env.PR_STATUS_URI
}
}
}
stage("Clear Existing Projects") {
steps {
echo "Removing old PR projects if they exist to ensure a clean slate to test against"
clearProjects()
}
}
// Uses sequential stages so same slave / workspace is preserved i.e. no need for stash link: https://jenkins.io/blog/2018/07/02/whats-new-declarative-piepline-13x-sequential-stages/
stage ("Spin up shared ansible slave") {
agent {
node {
label "jenkins-slave-ansible"
}
}
when {
expression { return env.PR_ID }
}
stages {
stage("Merge PR") {
steps {
echo "Pushing build state to the PR"
notifyGitHub('''{
"state": "pending",
"description": "ALL CI jobs are running...",
"context": "Jenkins"
}''')
sh """
git config --global user.email "[email protected]"
git config --global user.name "Labs Robot"
git checkout master
git fetch origin ${env.PR_BRANCH}:pr
git merge pr --ff
"""
}
}
stage("Apply ci-for-ci Inventory") {
steps {
echo "Applying inventory"
// each its own line to that in blue ocean UI they show seperately
sh "ansible-galaxy install -r requirements.yml --roles-path=roles"
sh "ansible-playbook site.yml -e ci_cd_namespace=${env.PR_CI_CD_PROJECT_NAME} -e dev_namespace=${env.PR_DEV_PROJECT_NAME} -e test_namespace=${env.PR_TEST_PROJECT_NAME} -e role=admin"
}
// Post can be used both on individual stages and for the entire build.
post {
success {
notifyGitHub('''{
"state": "success",
"description": "job completed :)",
"context": "Apply Inventory"
}''')
}
failure {
notifyGitHub('''{
"state": "failure",
"description": "job failed :(",
"context": "Apply Inventory"
}''')
}
}
}
}
}
stage("Verifying CI Builds") {
steps {
notifyGitHub('''{
"state": "pending",
"description": " job is running...",
"context": "CI Builds"
}''')
node('master') {
echo "Verifying the CI Builds have completed successfully"
script {
openshift.withCluster() {
openshift.withProject("${env.PR_CI_CD_PROJECT_NAME}") {
timeout(5) {
def pipelineBuildConfigs = openshift.selector('bc', [ type:'pipeline'])
def imageBuildConfigs = openshift.selector('bc', [ type:'image'])
def allDone = true
imageBuildConfigs.withEach {
echo "CI Builds: Checking ${it.name()}"
def imageBuildName = it.name()
def isPipelineBuild = false
pipelineBuildConfigs.withEach {
if (it.name() == imageBuildName) {
isPipelineBuild = true
}
}
if (isPipelineBuild == false) {
if (it.object().status.phase != "Complete") {
allDone = false
}
}
}
return allDone;
}
}
}
}
}
}
// Post can be used both on individual stages and for the entire build.
post {
success {
notifyGitHub('''{
"state": "success",
"description": "job completed :)",
"context": "CI Builds"
}''')
}
failure {
notifyGitHub('''{
"state": "failure",
"description": "job failed :(",
"context": "CI Builds"
}''')
}
}
}
stage("Verifying CI Deploys") {
steps {
notifyGitHub('''{
"state": "pending",
"description": " job is running...",
"context": "CI Deploys"
}''')
node('master') {
echo "Verifying the CI Deploys have completed successfully"
script {
openshift.withCluster() {
openshift.withProject("${env.PR_CI_CD_PROJECT_NAME}") {
timeout(10) {
def deploymentConfigs = openshift.selector('dc')
deploymentConfigs.withEach {
echo "Checking ${env.PR_CI_CD_PROJECT_NAME}:${it.name()}"
// this will wait until the desired replicas are available
// - or be terminated at timeout
it.rollout().status()
}
}
}
}
}
}
}
// Post can be used both on individual stages and for the entire build.
post {
success {
notifyGitHub('''{
"state": "success",
"description": "job completed :)",
"context": "CI Deploys"
}''')
}
failure {
notifyGitHub('''{
"state": "failure",
"description": "job failed :(",
"context": "CI Deploys"
}''')
}
}
}
stage("Clear Existing Projects on Successful Job") {
steps {
echo "Removing old PR projects if they exist to ensure a clean slate to test against"
clearProjects()
}
}
}
// global post hook
post {
success {
notifyGitHub('''{
"state": "success",
"description": "master ci job completed :)",
"context": "Jenkins"
}''')
}
failure {
notifyGitHub('''{
"state": "failure",
"description": "master ci job failed :(",
"context": "Jenkins"
}''')
}
}
}