forked from percona/percona-xtradb-cluster-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
367 lines (348 loc) · 16.1 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
358
359
360
361
362
363
364
365
366
367
void CreateCluster(String CLUSTER_PREFIX) {
withCredentials([string(credentialsId: 'GCP_PROJECT_ID', variable: 'GCP_PROJECT'), file(credentialsId: 'gcloud-key-file', variable: 'CLIENT_SECRET_FILE')]) {
sh """
export KUBECONFIG=/tmp/$CLUSTER_NAME-${CLUSTER_PREFIX}
source $HOME/google-cloud-sdk/path.bash.inc
gcloud auth activate-service-account --key-file $CLIENT_SECRET_FILE
gcloud config set project $GCP_PROJECT
gcloud container clusters create --zone us-central1-a $CLUSTER_NAME-${CLUSTER_PREFIX} --cluster-version 1.15 --machine-type n1-standard-4 --preemptible --num-nodes=3 --network=jenkins-vpc --subnetwork=jenkins-${CLUSTER_PREFIX} --no-enable-autoupgrade
kubectl create clusterrolebinding cluster-admin-binding --clusterrole cluster-admin --user jenkins@"$GCP_PROJECT".iam.gserviceaccount.com
"""
}
}
void ShutdownCluster(String CLUSTER_PREFIX) {
withCredentials([string(credentialsId: 'GCP_PROJECT_ID', variable: 'GCP_PROJECT'), file(credentialsId: 'gcloud-key-file', variable: 'CLIENT_SECRET_FILE')]) {
sh """
export KUBECONFIG=/tmp/$CLUSTER_NAME-${CLUSTER_PREFIX}
source $HOME/google-cloud-sdk/path.bash.inc
gcloud auth activate-service-account --key-file $CLIENT_SECRET_FILE
gcloud config set project $GCP_PROJECT
gcloud container clusters delete --zone us-central1-a $CLUSTER_NAME-${CLUSTER_PREFIX}
"""
}
}
void pushArtifactFile(String FILE_NAME) {
echo "Push $FILE_NAME file to S3!"
withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', accessKeyVariable: 'AWS_ACCESS_KEY_ID', credentialsId: 'AMI/OVF', secretKeyVariable: 'AWS_SECRET_ACCESS_KEY']]) {
sh """
touch ${FILE_NAME}
S3_PATH=s3://percona-jenkins-artifactory/\$JOB_NAME/\$(git rev-parse --short HEAD)
aws s3 ls \$S3_PATH/${FILE_NAME} || :
aws s3 cp --quiet ${FILE_NAME} \$S3_PATH/${FILE_NAME} || :
"""
}
}
void popArtifactFile(String FILE_NAME) {
echo "Try to get $FILE_NAME file from S3!"
withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', accessKeyVariable: 'AWS_ACCESS_KEY_ID', credentialsId: 'AMI/OVF', secretKeyVariable: 'AWS_SECRET_ACCESS_KEY']]) {
sh """
S3_PATH=s3://percona-jenkins-artifactory/\$JOB_NAME/\$(git rev-parse --short HEAD)
aws s3 cp --quiet \$S3_PATH/${FILE_NAME} ${FILE_NAME} || :
"""
}
}
TestsReport = '| Test name | Status |\\r\\n| ------------- | ------------- |'
testsReportMap = [:]
testsResultsMap = [:]
void makeReport() {
for ( test in testsReportMap ) {
TestsReport = TestsReport + "\\r\\n| ${test.key} | ${test.value} |"
}
}
void setTestsresults() {
testsResultsMap.each { file ->
pushArtifactFile("${file.key}")
}
}
void runTest(String TEST_NAME, String CLUSTER_PREFIX) {
def retryCount = 0
waitUntil {
try {
echo "The $TEST_NAME test was started!"
testsReportMap[TEST_NAME] = 'failed'
popArtifactFile("${env.GIT_BRANCH}-${env.GIT_SHORT_COMMIT}-$TEST_NAME")
sh """
if [ -f "${env.GIT_BRANCH}-${env.GIT_SHORT_COMMIT}-$TEST_NAME" ]; then
echo Skip $TEST_NAME test
else
export KUBECONFIG=/tmp/$CLUSTER_NAME-${CLUSTER_PREFIX}
source $HOME/google-cloud-sdk/path.bash.inc
./e2e-tests/$TEST_NAME/run
fi
"""
testsReportMap[TEST_NAME] = 'passed'
testsResultsMap["${env.GIT_BRANCH}-${env.GIT_SHORT_COMMIT}-$TEST_NAME"] = 'passed'
return true
}
catch (exc) {
if (retryCount >= 2) {
currentBuild.result = 'FAILURE'
return true
}
retryCount++
return false
}
}
echo "The $TEST_NAME test was finished!"
}
void installRpms() {
sh '''
sudo yum install -y https://repo.percona.com/yum/percona-release-latest.noarch.rpm || true
sudo percona-release enable-only tools
sudo yum install -y percona-xtrabackup-80 jq | true
'''
}
def skipBranchBulds = true
if ( env.CHANGE_URL ) {
skipBranchBulds = false
}
pipeline {
environment {
CLOUDSDK_CORE_DISABLE_PROMPTS = 1
CLEAN_NAMESPACE = 1
OPERATOR_NS = 'pxc-operator'
GIT_SHORT_COMMIT = sh(script: 'git describe --always --dirty', , returnStdout: true).trim()
VERSION = "${env.GIT_BRANCH}-${env.GIT_SHORT_COMMIT}"
CLUSTER_NAME = sh(script: "echo jenkins-pxc-${GIT_SHORT_COMMIT} | tr '[:upper:]' '[:lower:]'", , returnStdout: true).trim()
AUTHOR_NAME = sh(script: "echo ${CHANGE_AUTHOR_EMAIL} | awk -F'@' '{print \$1}'", , returnStdout: true).trim()
}
agent {
label 'docker'
}
stages {
stage('Prepare') {
when {
expression {
!skipBranchBulds
}
}
steps {
stash includes: 'vendor/**', name: 'vendorFILES'
installRpms()
script {
if ( AUTHOR_NAME == 'null' ) {
AUTHOR_NAME = sh(script: "git show -s --pretty=%ae | awk -F'@' '{print \$1}'", , returnStdout: true).trim()
}
}
sh '''
if [ ! -d $HOME/google-cloud-sdk/bin ]; then
rm -rf $HOME/google-cloud-sdk
curl https://sdk.cloud.google.com | bash
fi
source $HOME/google-cloud-sdk/path.bash.inc
gcloud components install alpha
gcloud components install kubectl
curl -s https://get.helm.sh/helm-v3.2.3-linux-amd64.tar.gz \
| sudo tar -C /usr/local/bin --strip-components 1 -zvxpf -
curl -s -L https://github.com/openshift/origin/releases/download/v3.11.0/openshift-origin-client-tools-v3.11.0-0cbc58b-linux-64bit.tar.gz \
| sudo tar -C /usr/local/bin --strip-components 1 --wildcards -zxvpf - '*/oc'
curl -s -L https://github.com/mitchellh/golicense/releases/latest/download/golicense_0.2.0_linux_x86_64.tar.gz \
| sudo tar -C /usr/local/bin --wildcards -zxvpf -
sudo curl -s -L https://github.com/go-swagger/go-swagger/releases/download/v0.24.0/swagger_linux_amd64 -o /usr/local/bin/swagger
curl -s -L https://github.com/go-enry/go-license-detector/releases/download/v4.0.0/license-detector-v4.0.0-linux-amd64.tar.gz \
| sudo tar -C /usr/local/bin --wildcards -zxvpf -
sudo chmod +x /usr/local/bin/license-detector
sudo chmod +x /usr/local/bin/swagger
'''
withCredentials([file(credentialsId: 'cloud-secret-file', variable: 'CLOUD_SECRET_FILE')]) {
sh '''
cp $CLOUD_SECRET_FILE ./e2e-tests/conf/cloud-secret.yml
'''
}
}
}
stage('Build docker image') {
when {
expression {
!skipBranchBulds
}
}
steps {
withCredentials([usernamePassword(credentialsId: 'hub.docker.com', passwordVariable: 'PASS', usernameVariable: 'USER')]) {
sh '''
DOCKER_TAG=perconalab/percona-xtradb-cluster-operator:$VERSION
docker_tag_file='./results/docker/TAG'
mkdir -p $(dirname ${docker_tag_file})
echo ${DOCKER_TAG} > "${docker_tag_file}"
sg docker -c "
docker login -u '${USER}' -p '${PASS}'
export IMAGE=\$DOCKER_TAG
./e2e-tests/build
docker logout
"
sudo rm -rf ./build
'''
}
stash includes: 'results/docker/TAG', name: 'IMAGE'
archiveArtifacts 'results/docker/TAG'
}
}
stage('GoLicenseDetector test') {
when {
expression {
!skipBranchBulds
}
}
steps {
sh """
license-detector ${WORKSPACE} | awk '{print \$2}' | awk 'NF > 0' > license-detector-new || true
diff -u e2e-tests/license/compare/license-detector license-detector-new
"""
}
}
stage('GoLicense test') {
when {
expression {
!skipBranchBulds
}
}
steps {
sh '''
mkdir -p $WORKSPACE/src/github.com/percona
ln -s $WORKSPACE $WORKSPACE/src/github.com/percona/percona-xtradb-cluster-operator
sg docker -c "
docker run \
--rm \
-v $WORKSPACE/src/github.com/percona/percona-xtradb-cluster-operator:/go/src/github.com/percona/percona-xtradb-cluster-operator \
-w /go/src/github.com/percona/percona-xtradb-cluster-operator \
-e GO111MODULE=on \
golang:1.14 sh -c 'go get github.com/go-swagger/go-swagger/cmd/[email protected] \
&& swagger generate client -f vendor/github.com/Percona-Lab/percona-version-service/api/version.swagger.yaml -c versionserviceclient -m versionserviceclient/models \
&& go build -v -mod=vendor -o percona-xtradb-cluster-operator github.com/percona/percona-xtradb-cluster-operator/cmd/manager'
"
'''
withCredentials([string(credentialsId: 'GITHUB_API_TOKEN', variable: 'GITHUB_TOKEN')]) {
sh """
golicense -plain ./percona-xtradb-cluster-operator \
| grep -v 'license not found' \
| sed -r 's/^[^ ]+[ ]+//' \
| sort \
| uniq \
> golicense-new || true
diff -u e2e-tests/license/compare/golicense golicense-new
"""
}
unstash 'vendorFILES'
}
}
stage('Run tests for operator') {
when {
expression {
!skipBranchBulds
}
}
options {
timeout(time: 3, unit: 'HOURS')
}
parallel {
stage('E2E Basic Tests') {
steps {
CreateCluster('basic')
runTest('init-deploy', 'basic')
runTest('limits', 'basic')
runTest('monitoring', 'basic')
runTest('monitoring-2-0', 'basic')
runTest('affinity', 'basic')
runTest('one-pod', 'basic')
runTest('auto-tuning', 'basic')
runTest('proxysql-sidecar-res-limits', 'basic')
runTest('users', 'basic')
ShutdownCluster('basic')
}
}
stage('E2E Scaling') {
steps {
CreateCluster('scaling')
runTest('scaling', 'scaling')
runTest('scaling-proxysql', 'scaling')
runTest('upgrade', 'scaling')
runTest('upgrade-consistency', 'scaling')
runTest('security-context', 'scaling')
ShutdownCluster('scaling')
}
}
stage('E2E SelfHealing') {
steps {
CreateCluster('selfhealing')
runTest('storage', 'selfhealing')
runTest('self-healing', 'selfhealing')
runTest('self-healing-advanced', 'selfhealing')
runTest('operator-self-healing', 'selfhealing')
ShutdownCluster('selfhealing')
}
}
stage('E2E Backups') {
steps {
CreateCluster('backups')
runTest('recreate', 'backups')
runTest('restore-to-encrypted-cluster', 'backups')
runTest('demand-backup', 'backups')
runTest('scheduled-backup', 'backups')
runTest('demand-backup-encrypted-with-tls', 'backups')
ShutdownCluster('backups')
}
}
stage('E2E BigData') {
steps {
CreateCluster('bigdata')
runTest('big-data', 'bigdata')
ShutdownCluster('bigdata')
}
}
}
}
}
post {
always {
script {
setTestsresults()
if (currentBuild.result == null || currentBuild.result == 'SUCCESS') {
if (env.CHANGE_URL) {
unstash 'IMAGE'
def IMAGE = sh(returnStdout: true, script: "cat results/docker/TAG").trim()
withCredentials([string(credentialsId: 'GITHUB_API_TOKEN', variable: 'GITHUB_API_TOKEN')]) {
sh """
curl -v -X POST \
-H "Authorization: token ${GITHUB_API_TOKEN}" \
-d "{\\"body\\":\\"PXC operator docker - ${IMAGE}\\"}" \
"https://api.github.com/repos/\$(echo $CHANGE_URL | cut -d '/' -f 4-5)/issues/${CHANGE_ID}/comments"
"""
}
}
}
else {
slackSend channel: '#cloud-dev-ci', color: '#FF0000', message: "[${JOB_NAME}]: build ${currentBuild.result}, ${BUILD_URL} owner: @${AUTHOR_NAME}"
}
}
script {
if (env.CHANGE_URL) {
withCredentials([string(credentialsId: 'GITHUB_API_TOKEN', variable: 'GITHUB_API_TOKEN')]) {
makeReport()
sh """
curl -v -X POST \
-H "Authorization: token ${GITHUB_API_TOKEN}" \
-d "{\\"body\\":\\"${TestsReport}\\"}" \
"https://api.github.com/repos/\$(echo $CHANGE_URL | cut -d '/' -f 4-5)/issues/${CHANGE_ID}/comments"
"""
}
withCredentials([string(credentialsId: 'GCP_PROJECT_ID', variable: 'GCP_PROJECT'), file(credentialsId: 'gcloud-key-file', variable: 'CLIENT_SECRET_FILE')]) {
sh '''
source $HOME/google-cloud-sdk/path.bash.inc
gcloud auth activate-service-account --key-file $CLIENT_SECRET_FILE
gcloud config set project $GCP_PROJECT
gcloud container clusters delete --zone us-central1-a $CLUSTER_NAME-basic $CLUSTER_NAME-scaling $CLUSTER_NAME-selfhealing $CLUSTER_NAME-backups $CLUSTER_NAME-bigdata | true
sudo docker rmi -f \$(sudo docker images -q) || true
sudo rm -rf $HOME/google-cloud-sdk
'''
}
}
}
sh '''
sudo docker rmi -f \$(sudo docker images -q) || true
sudo rm -rf ./*
sudo rm -rf $HOME/google-cloud-sdk
'''
deleteDir()
}
}
}