forked from lfs262/dso-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
159 lines (159 loc) · 4.4 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
pipeline {
environment {
ARGO_SERVER = '34.70.12.184:32100'
DEMO_URL = 'http://34.70.12.184:30080/'
}
agent {
kubernetes {
yamlFile 'build-agent.yaml'
defaultContainer 'maven'
idleMinutes 1
}
}
stages {
stage('Build') {
parallel {
stage('Compile') {
steps {
container('maven') {
sh 'mvn compile'
}
}
}
}
}
stage('Static Analysis') {
parallel {
stage('Unit Tests') {
steps {
container('maven') {
sh 'mvn test'
}
}
}
stage('SCA') {
steps {
container('maven') {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'mvn org.owasp:dependency-check-maven:check'
}
}
}
post {
always {
archiveArtifacts allowEmptyArchive: true, artifacts: 'target/dependency-check-report.html', fingerprint: true, onlyIfSuccessful: true
// dependencyCheckPublisher pattern: 'report.xml'
}
}
}
stage('OSS License Checker') {
steps {
container('licensefinder') {
sh '''#!/bin/bash --login
/bin/bash --login
rvm use default
gem install license_finder
license_finder
'''
}
}
}
stage('Generate SBOM') {
steps {
container('maven') {
sh 'mvn org.cyclonedx:cyclonedx-maven-plugin:makeAggregateBom'
}
}
post {
success {
// dependencyTrackPublisher projectName: 'sample-spring-app', projectVersion: '0.0.1', artifact: 'target/bom.xml', autoCreateProjects: true, synchronous: true
archiveArtifacts allowEmptyArchive: true, artifacts: 'target/bom.xml', fingerprint: true, onlyIfSuccessful: true
}
}
}
stage('SAST') {
steps {
container('slscan') {
sh 'scan --type java,depscan --build'
}
}
post {
success {
archiveArtifacts allowEmptyArchive: true, artifacts: 'reports/*', fingerprint: true, onlyIfSuccessful: true
}
}
}
}
}
stage('Package') {
parallel {
stage('Create Jarfile') {
steps {
container('maven') {
sh 'mvn package -DskipTests'
}
}
}
stage('OCI Image BnP') {
steps {
container('kaniko') {
sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --insecure --skip-tls-verify --cache=true --destination=docker.io/manuelnucci/lfs262-devsecops-demo'
}
}
}
}
}
stage('Image Analysis') {
parallel {
stage('Image Linting') {
steps {
container('docker-tools') {
sh 'dockle manuelnucci/lfs262-devsecops-demo'
}
}
}
// stage('Image Scan') {
// steps {
// container('docker-tools') {
// sh 'trivy image --exit-code 1 manuelnucci/lfs262-devsecops-demo'
// }
// }
// }
}
}
stage('Scan k8s Deploy Code') {
steps {
container('docker-tools') {
sh 'docker run -t -v $(pwd):/app bridgecrew/checkov -d /app/deploy'
}
}
}
stage('Deploy to Dev') {
environment {
AUTH_TOKEN = credentials('argocd-jenkins-deployer-token')
}
steps {
container('docker-tools') {
sh 'docker run -t schoolofdevops/argocd-cli argocd app sync devsecops-demo --insecure --server $ARGO_SERVER --auth-token $AUTH_TOKEN'
sh 'docker run -t schoolofdevops/argocd-cli argocd app wait devsecops-demo --health --timeout 300 --insecure --server $ARGO_SERVER --auth-token $AUTH_TOKEN'
}
}
}
stage('Dynamic Analysis') {
parallel {
stage('E2E tests') {
steps {
sh 'echo "All Tests passed!!!"'
}
}
stage('DAST') {
steps {
container('docker-tools') {
sh 'docker run -t owasp/zap2docker-stable zap-baseline.py -t $DEMO_URL || exit 0'
}
}
}
}
}
}
}