-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
280 lines (278 loc) · 9.74 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
pipeline {
agent any
tools {
jdk 'jdk17'
nodejs 'node16'
}
environment {
SCANNER_HOME = tool 'sonar-scanner'
}
stages {
stage('clean workspace') {
steps {
cleanWs()
}
}
stage('Checkout from Git') {
steps {
git branch: 'main', url: 'https://github.com/yash509/DevSecOps-Python-Flask-App.git'
}
}
stage('Deployments') {
parallel {
stage('deploy to staging') {
steps {
echo 'staging deployment done'
}
}
stage('deploy to production') {
steps {
echo 'production deployment done'
}
}
}
}
stage('Test Build') {
steps {
echo 'Building....'
}
post {
always {
jiraSendBuildInfo site: 'clouddevopshunter.atlassian.net'
}
}
}
stage('Deploy - Staging') {
when {
branch 'master'
}
steps {
echo 'Deploying to Staging from main....'
}
post {
always {
jiraSendDeploymentInfo environmentId: 'us-stg-1', environmentName: 'us-stg-1', environmentType: 'staging'
}
}
}
stage('Deploy - Production') {
when {
branch 'master'
}
steps {
echo 'Deploying to Production from main....'
}
post {
always {
jiraSendDeploymentInfo environmentId: 'us-prod-1', environmentName: 'us-prod-1', environmentType: 'production'
}
}
}
stage("Sonarqube Analysis ") {
steps {
//dir('Band Website') {
withSonarQubeEnv('sonar-server') {
sh '''$SCANNER_HOME/bin/sonar-scanner -Dsonar.projectName=python-app \
-Dsonar.projectKey=python-app'''
//}
}
}
}
stage("quality gate") {
steps {
//dir('Band Website') {
script {
waitForQualityGate abortPipeline: false, credentialsId: 'Sonar-token'
//}
}
}
}
stage('Install Dependencies') {
steps {
//dir('Band Website') {
sh "npm install"
//}
}
}
stage('OWASP File System SCAN') {
steps {
//dir('Band Website') {
dependencyCheck additionalArguments: '--scan ./ --disableYarnAudit --disableNodeAudit', odcInstallation: 'DP-Check'
dependencyCheckPublisher pattern: '**/dependency-check-report.xml'
//}
}
}
stage('TRIVY File System SCAN') {
steps {
//dir('Band Website') {
sh "trivy fs . > trivyfs.txt"
//}
}
}
stage('Docker Scout File System') {
steps {
script{
withDockerRegistry(credentialsId: 'docker', toolName: 'docker'){
sh 'docker-scout quickview fs://.'
sh 'docker-scout cves fs://.'
}
}
}
}
stage("Docker Image Building"){
steps{
script{
//dir('Band Website') {
withDockerRegistry(credentialsId: 'docker', toolName: 'docker'){
sh "docker build -t py-calc-app ."
//}
}
}
}
}
stage("Docker Image Tagging"){
steps{
script{
//dir('Band Website') {
withDockerRegistry(credentialsId: 'docker', toolName: 'docker'){
sh "docker tag py-calc-app yash5090/py-calc-app:latest "
//}
}
}
}
}
stage('Docker Image Scanning') {
steps {
sh "trivy image --format table -o trivy-image-report.html yash5090/py-calc-app:latest"
}
}
stage("Image Push to DockerHub") {
steps{
script{
//dir('Band Website') {
withDockerRegistry(credentialsId: 'docker', toolName: 'docker') {
sh "docker push yash5090/py-calc-app:latest "
//}
}
}
}
}
stage('Docker Scout Image') {
steps {
script{
withDockerRegistry(credentialsId: 'docker', toolName: 'docker'){
sh 'docker-scout quickview yash5090/py-calc-app:latest'
sh 'docker-scout cves yash5090/py-calc-app:latest'
sh 'docker-scout recommendations yash5090/py-calc-app:latest'
}
}
}
}
stage("TRIVY"){
steps{
//dir('Band Website') {
sh "trivy image yash5090/py-calc-app:latest > trivyimage.txt"
//}
}
}
stage ('Manual Approval'){
steps {
script {
timeout(time: 10, unit: 'MINUTES') {
approvalMailContent = """
Project: ${env.JOB_NAME}
Build Number: ${env.BUILD_NUMBER}
Go to build URL and approve the deployment request.
URL de build: ${env.BUILD_URL}
"""
mail(
to: 'clouddevopshunter@gmail.com',
subject: "${currentBuild.result} CI: Project name -> ${env.JOB_NAME}",
body: approvalMailContent,
mimeType: 'text/plain'
)
input(
id: "DeployGate",
message: "Deploy ${params.project_name}?",
submitter: "approver",
parameters: [choice(name: 'action', choices: ['Deploy'], description: 'Approve deployment')])
}
}
}
}
stage('Deploy to container'){
steps{
//dir('BMI Calculator (JS)') {
sh 'docker run -d --name py-calc-app -p 3000:3000 yash5090/py-calc-app:latest'
//}
}
}
stage('Deploy to Kubernetes'){
steps{
script{
//dir('K8S') {
withKubeConfig(caCertificate: '', clusterName: '', contextName: '', credentialsId: 'k8s', namespace: '', restrictKubeConfigAccess: false, serverUrl: '') {
sh 'kubectl apply -f deployment.yaml'
sh 'kubectl apply -f service.yaml'
//}
}
}
}
}
stage('Verify the Kubernetes Deployments') {
steps {
withKubeConfig(caCertificate: '', clusterName: '', contextName: '', credentialsId: 'k8s', namespace: '', restrictKubeConfigAccess: false, serverUrl: '') {
sh "kubectl get pods "
sh "kubectl get svc "
}
}
}
stage('Deployment Done') {
steps {
echo 'Deployed Succcessfully...'
}
}
}
post {
always {
script {
def jobName = env.JOB_NAME
def buildNumber = env.BUILD_NUMBER
def pipelineStatus = currentBuild.result ?: 'UNKNOWN'
def bannerColor = pipelineStatus.toUpperCase() == 'SUCCESS' ? 'green' : 'red'
def body = """
<html>
<body>
<div style="border: 4px solid ${bannerColor}; padding: 10px;">
<h2>${jobName} - Build ${buildNumber}</h2>
<div style="background-color: ${bannerColor}; padding: 10px;">
<h3 style="color: white;">Pipeline Status: ${pipelineStatus.toUpperCase()}</h3>
</div>
<p>Check the <a href="${BUILD_URL}">console output</a>.</p>
</div>
</body>
</html>
"""
emailext (
subject: "${jobName} - Build ${buildNumber} - ${pipelineStatus.toUpperCase()}",
body: body,
to: 'clouddevopshunter@gmail.com',
from: 'jenkins@example.com',
replyTo: 'jenkins@example.com',
mimeType: 'text/html',
attachmentsPattern: 'trivy-image-report.html,trivyfs.txt,trivyimage.txt')
}
}
}
}
stage('Result') {
timeout(time: 10, unit: 'MINUTES') {
mail to: 'clouddevopshunter@gmail.com',
subject: "${currentBuild.result} CI: ${env.JOB_NAME}",
body: "Project: ${env.JOB_NAME}\nBuild Number: ${env.BUILD_NUMBER}\nGo to ${env.BUILD_URL} and approve deployment"
input message: "Deploy ${params.project_name}?",
id: "DeployGate",
submitter: "approver",
parameters: [choice(name: 'action', choices: ['Success'], description: 'Approve deployment')]
}
}