-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Jenkinsfile_demo
96 lines (79 loc) · 3.09 KB
/
Jenkinsfile_demo
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
pipeline{
agent any
environment{
VERSION = "${env.BUILD_ID}"
}
stages{
stage("sonar qube analysis"){
agent{
docker {
image 'openjdk:11'
}
}
steps{
script{
withSonarQubeEnv(credentialsId: 'sonar-token') {
sh '''
chmod +x gradlew
./gradlew sonarqube
'''
}
timeout(5) {
def qg = waitForQualityGate()
if (qg.status != 'OK') {
error "Pipeline aborted due to quality gate failure: ${qg.status}"
}
}
}
}
}
stage("building docker image and pushing it to nexus"){
steps{
script{
withCredentials([string(credentialsId: 'nexus_pass', variable: 'docker_pass')]) {
sh '''
docker build -t 35.188.44.251:8083/springapp:${VERSION} .
docker login -u admin -p $docker_pass 35.188.44.251:8083
docker push 35.188.44.251:8083/springapp:${VERSION}
docker rmi 35.188.44.251:8083/springapp:${VERSION}
docker image prune -f
'''
}
}
}
}
stage('manual approval'){
steps{
script{
timeout(10) {
mail bcc: '', body: "<br>Project: ${env.JOB_NAME} <br>Build Number: ${env.BUILD_NUMBER} <br> Go to build url and approve the deployment request <br> URL de build: ${env.BUILD_URL}", cc: '', charset: 'UTF-8', from: '', mimeType: 'text/html', replyTo: '', subject: "${currentBuild.result} CI: Project name -> ${env.JOB_NAME}", to: "[email protected]";
input(id: "Deploy Gate", message: "Deploy ${params.project_name}?", ok: 'Deploy')
}
}
}
}
stage('Deploying application on k8s cluster') {
steps {
script{
withCredentials([kubeconfigFile(credentialsId: 'kubernetes-config', variable: 'KUBECONFIG')]) {
dir('kubernetes/') {
sh 'helm upgrade --install --set image.repository="35.188.44.251:8083/springapp" --set image.tag="${VERSION}" myjavaapp myapp/ '
}
}
}
}
}
stage('verifying app deployment'){
steps{
script{
withCredentials([kubeconfigFile(credentialsId: 'kubernetes-config', variable: 'KUBECONFIG')]) {
sh '''
chmod +x healthcheck.sh
./healthcheck.sh
'''
}
}
}
}
}
}