-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJenkinsfile
335 lines (306 loc) · 10.9 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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
pipeline {
agent any
tools {
jdk 'jdk17'
nodejs 'node16'
}
environment {
SCANNER_HOME = tool 'sonar-scanner'
}
stages {
stage('clean workspace') {
steps {
cleanWs()
}
}
stage('Unit Tests') {
steps {
sh 'jenkins --version'
sh 'aws --version'
sh 'kubectl version --client'
sh 'terraform --version'
sh 'trivy --version'
sh 'docker --version'
}
}
stage('Checkout from Git') {
steps {
git branch: 'main', url: ''
}
}
stage('Deployments') {
parallel {
stage('Test deploy to staging') {
steps {
echo 'staging deployment done'
}
}
stage('Test deploy to production') {
steps {
echo 'production deployment done'
}
}
}
}
stage('Test Build') {
steps {
echo 'Building....'
}
post {
always {
jiraSendBuildInfo site: 'clouddevopshunter.atlassian.net'
}
}
}
stage('Deploy to Staging') {
when {
branch 'main'
}
steps {
echo 'Deploying to Staging from main....'
}
post {
always {
jiraSendDeploymentInfo environmentId: 'us-stg-1', environmentName: 'us-stg-1', environmentType: 'staging', issueKeys: ['JIRA-1234']
}
}
}
stage('Deploy to Production') {
when {
branch 'main'
}
steps {
echo 'Deploying to Production from main....'
}
post {
always {
jiraSendDeploymentInfo environmentId: 'us-prod-1', environmentName: 'us-prod-1', environmentType: 'production', issueKeys: ['JIRA-1234']
}
}
}
stage("Sonarqube Analysis ") {
steps {
//dir('Band Website') {
withSonarQubeEnv('sonar-server') {
sh '''$SCANNER_HOME/bin/sonar-scanner -Dsonar.projectName=wd-application \
-Dsonar.projectKey=wd-application'''
//}
}
}
}
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 Image Overview') {
steps {
script{
withDockerRegistry(credentialsId: 'docker', toolName: 'docker'){
sh 'docker-scout quickview fs://.'
}
}
}
}
stage('Docker Scout CVES File System Scan') {
steps {
script{
withDockerRegistry(credentialsId: 'docker', toolName: 'docker'){
sh 'docker-scout cves fs://.'
}
}
}
}
stage("Docker Image Building"){
steps{
script{
//dir('Band Website') {
withDockerRegistry(credentialsId: 'docker', toolName: 'docker'){
sh "docker build -t wordictionary ."
//}
}
}
}
}
stage("Docker Image Tagging"){
steps{
script{
//dir('Band Website') {
withDockerRegistry(credentialsId: 'docker', toolName: 'docker'){
sh "docker tag wordictionary yash5090/wordictionary:latest "
//}
}
}
}
}
stage('Docker Image Scanning') {
steps {
sh "trivy image --format table -o trivy-image-report.html yash5090/wordictionary:latest"
}
}
stage("Image Push to DockerHub") {
steps{
script{
//dir('Band Website') {
withDockerRegistry(credentialsId: 'docker', toolName: 'docker') {
sh "docker push yash5090/wordictionary:latest "
//}
}
}
}
}
stage('Docker Scout Image Scanning') {
steps {
script{
withDockerRegistry(credentialsId: 'docker', toolName: 'docker'){
sh 'docker-scout quickview yash5090/wordictionary:latest'
sh 'docker-scout cves yash5090/wordictionary:latest'
sh 'docker-scout recommendations yash5090/wordictionary:latest'
sh 'docker-scout attestation yash5090/wordictionary:latest'
}
}
}
}
stage("TRIVY"){
steps{
//dir('Band Website') {
sh "trivy image yash5090/wordictionary: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 ("Remove Docker Container") {
steps{
sh "docker stop wordictionary | true"
sh "docker rm wordictionary | true"
}
}
stage('Deploy to Docker Container'){
steps{
//dir('BMI Calculator (JS)') {
sh 'docker run -d --name wordictionary -p 5000:80 yash5090/wordictionary: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 all "
sh "kubectl get pods "
sh "kubectl get svc "
sh "kubectl get ns"
}
}
}
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 (
attachLog: true,
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')]
}
}