forked from DeekshithSN/sample-web-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
79 lines (59 loc) · 1.96 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
currentBuild.displayName = "Final_Demo # "+currentBuild.number
def getDockerTag(){
def tag = sh script: 'git rev-parse HEAD', returnStdout: true
return tag
}
pipeline{
agent any
environment{
Docker_tag = getDockerTag()
}
stages{
stage('Quality Gate Statuc Check'){
agent {
docker {
image 'maven'
args '-v $HOME/.m2:/root/.m2'
}
}
steps{
script{
withSonarQubeEnv('sonarserver') {
sh "mvn sonar:sonar"
}
timeout(time: 1, unit: 'HOURS') {
def qg = waitForQualityGate()
if (qg.status != 'OK') {
error "Pipeline aborted due to quality gate failure: ${qg.status}"
}
}
sh "mvn clean install"
}
}
}
stage('build')
{
steps{
script{
sh 'cp -r ../devops-training@2/target .'
sh 'docker build . -t deekshithsn/devops-training:$Docker_tag'
withCredentials([string(credentialsId: 'docker_password', variable: 'docker_password')]) {
sh 'docker login -u deekshithsn -p $docker_password'
sh 'docker push deekshithsn/devops-training:$Docker_tag'
}
}
}
}
stage('ansible playbook'){
steps{
script{
sh '''final_tag=$(echo $Docker_tag | tr -d ' ')
echo ${final_tag}test
sed -i "s/docker_tag/$final_tag/g" deployment.yaml
'''
ansiblePlaybook become: true, installation: 'ansible', inventory: 'hosts', playbook: 'ansible.yaml'
}
}
}
}
}