-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
82 lines (74 loc) · 3.13 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
pipeline{
agent any
environment{
VERSION = "${env.BUILD_ID}"
}
stages{
stage("Sonar quality check"){
agent {
docker {
image 'openjdk:11'
}
}
steps{
script{
withSonarQubeEnv(credentialsId: 'sonartoken') {
sh 'chmod +x gradlew'
sh './gradlew sonarqube'
}
timeout(time: 1, unit: 'HOURS') {
def qg = waitForQualityGate()
if (qg.status != 'OK') {
error "Pipeline aborted due to quality gate failure: ${qg.status}"
}
}
}
}
}
stage("docker build and docker push"){
steps{
script{
withCredentials([string(credentialsId: 'docker_pass_nexus', variable: 'docker_password')]) {
sh '''
docker build -t 34.125.208.211:8083/springapp:${VERSION} .
docker login -u admin -p $docker_password 34.125.208.211:8083
docker push 34.125.208.211:8083/springapp:${VERSION}
docker rmi 34.125.208.211:8083/springapp:${VERSION}
'''
}
}
}
}
stage("identifying misconfigs using datree in helmcharts"){
steps{
script{
dir('kubernetes/') {
withEnv(["DATREE_TOKEN=${DATREE_TOKEN}"]) {
sh 'helm datree test myapp/'
}
}
}
}
}
stage("pushing helm charts to nexus"){
steps{
script{
withCredentials([string(credentialsId: 'docker_pass_nexus', variable: 'docker_password')]) {
dir('kubernetes/') {
sh '''
helmversion=$(helm show chart myapp | grep version | cut -d: -f 2 | tr -d ' ')
tar -czvf myapp-${helmversion}.tgz myapp/
curl -u admin:$docker_password http://34.125.208.211:8081/repository/helm-hosted/ --upload-file myapp-${helmversion}.tgz -v
'''
}
}
}
}
}
}
post{
always{
echo "SUCCESS"
}
}
}