-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathJenkinsfile
More file actions
71 lines (54 loc) · 1.78 KB
/
Jenkinsfile
File metadata and controls
71 lines (54 loc) · 1.78 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
63
64
65
66
67
68
69
70
71
pipeline{
agent any
options {
buildDiscarder(logRotator(numToKeepStr: '5'))
}
stages{
stage('Quality Gate Statuc Check'){
agent {
docker {
image 'maven'
args '-v $HOME/.m2:/root/.m2'
}
}
steps{
script{
withSonarQubeEnv('sq1') {
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'
}
}
}
}
}