-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
62 lines (61 loc) · 2.06 KB
/
Copy pathJenkinsfile
File metadata and controls
62 lines (61 loc) · 2.06 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
pipeline{
environment {
registry = "kaan123/nodejs-helloworld"
registryCredential = 'gizemtekiner-dockerhub'
dockerImage = ''
SONARSERVER = 'sonarserver'
SONARSCANNER = 'sonarscanner'
}
agent any
stages {
stage('Build'){
steps{
script{
sh 'npm install'
}
}
}
stage('sonar analysis'){
environment{
scannerHome = tool "${SONARSCANNER}"
}
steps{
withSonarQubeEnv("${SONARSERVER}") {
sh '''${scannerHome}/bin/sonar-scanner -Dsonar.projectKey=vprofile \
-Dsonar.projectName=vprofile \
-Dsonar.projectVersion=1.0 \
-Dsonar.sources=/var/lib/jenkins/workspace/pipeline-nodejs-helloworld/ \
-Dsonar.java.binaries=target/test-classes/com/visualpathit/account/controllerTest/ \
-Dsonar.junit.reportsPath=target/surefire-reports/ \
-Dsonar.jacoco.reportsPath=target/jacoco.exec \
-Dsonar.java.checkstyle.reportPaths=target/checkstyle-result.xml'''
}
}
}
stage('Building image') {
steps{
script {
dockerImage = docker.build registry + ":latest"
}
}
}
stage('Push Image') {
steps{
script {
docker.withRegistry( '', registryCredential){
dockerImage.push()
}
}
}
}
stage('Deploying into k8s'){
steps{
script {
sh "cat deployment.yaml"
sh "kubectl --kubeconfig=/home/mildevops/.kube/config get pods"
sh "kubectl --kubeconfig=/home/mildevops/.kube/config apply -f deployment.yaml"
}
}
}
}
}