-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
255 lines (173 loc) · 6.36 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
pipeline {
agent any
// tools {
// nodejs "node16"
// }
environment {
SCANNER_HOME=tool 'sonar-scanner' // define path of sonarqube scanner tool //'sonar-scanner' is the name we specified in tool
}
stages {
stage('Git Checkout') {
steps {
git credentialsId: 'github-cred', url: 'https://github.com/princewillopah/CICD-MERN-Stack-with-Jenkins.git'
}
}
// stage('Install Backend Dependencies') {
// steps {
// dir('AppFiles/Backend') {
// sh "npm install"
// }
// }
// }
// stage('Install Frontend Dependencies') {
// steps {
// dir('AppFiles/Frontend') {
// sh "npm install"
// }
// }
// }
// stage('Unit Test Backend') {
// steps {
// // dir('AppFiles/Backend') {
// // sh "npm test"
// // }
// echo 'Backend Test Completed'
// }
// }
// stage('Unit Test Frontend') {
// steps {
// // dir('AppFiles/Frontend') {
// // sh "npm test"
// // }
// echo 'Frontend Test Completed'
// }
// }
// stage('Trivy FS Scan') {
// steps {
// sh "trivy fs --format table -o trivy-fs-report.html ." // scanning the whole repository
// }
// }
stage('SonarQube') {
steps {
withSonarQubeEnv('sonar') {
sh '''
$SCANNER_HOME/bin/sonar-scanner -Dsonar.projectName=CICD-MERN-Stack-with-Jenkins \
-Dsonar.projectKey=CICD-MERN-Stack-with-Jenkins
'''
}
}
}
stage("Docker Build & Tag Backend"){
steps{
script{
withDockerRegistry(credentialsId: 'dockerhub-credentials', toolName: 'docker'){
dir('AppFiles/Backend') {
sh "docker build -t princewillopah/cicd-mern-stack-with-jenkins-backend:v3 ."
}
}
}
}
}
stage("Docker Build & Tag Frontend"){
steps{
script{
withDockerRegistry(credentialsId: 'dockerhub-credentials', toolName: 'docker'){
dir('AppFiles/Frontend') {
sh "docker build -t princewillopah/cicd-mern-stack-with-jenkins-frontend:v3 ."
}
}
}
}
}
stage("Trivy Image Scan Backend"){
steps{
sh "trivy image --format table -o trivy-backend-image-report.html princewillopah/cicd-mern-stack-with-jenkins-backend:v-1.0.1"
}
}
stage("Trivy Image Scan Frontend"){
steps{
sh "trivy image --format table -o trivy-frontend-image-report.html princewillopah/cicd-mern-stack-with-jenkins-frontend:v-1.0.1"
}
}
stage("Push Backend To DockerHub"){
steps{
script{
withDockerRegistry(credentialsId: 'dockerhub-credentials', toolName: 'docker'){
sh "docker push princewillopah/cicd-mern-stack-with-jenkins-backend:v3"
}
}
}
}
stage("Push Frontend To DockerHub"){
steps{
script{
withDockerRegistry(credentialsId: 'dockerhub-credentials', toolName: 'docker'){
sh "docker push princewillopah/cicd-mern-stack-with-jenkins-frontend:v3"
}
}
}
}
stage("Deploy Backend To Dev"){
steps{
script{
withKubeCredentials(kubectlCredentials: [[caCertificate: '', clusterName: 'xxx', contextName: '', credentialsId: 'kubernetes-credentials', namespace: 'xxx', serverUrl: 'https://07CED18E65441F7157B34DDDFD843B60.yl4.eu-north-1.eks.amazonaws.com']]) {
dir('K8sFiles') {
sh 'kubectl delete --all pods -n xxx'
sh "kubectl apply -f . -n xxx"
sleep 60
}
}
}
}
}
// stage("Verify Deployment"){
// steps{
// script{
// withKubeCredentials(kubectlCredentials: [[caCertificate: '', clusterName: 'my-eks22', contextName: '', credentialsId: 'kubernetes-credentials', namespace: 'webapp', serverUrl: 'https://ADE8B9FF913B987320A01983C65148DC.gr7.eu-north-1.eks.amazonaws.com']]) {
// dir('K8sFiles') {
// sh 'kubectl get pods -n webapp'
// sh 'kubectl get svc -n webapp'
// sleep 60
// }
// }
// }
// }
// }
// stage("Deploy Frontend To Dev"){
// steps{
// script{
// withDockerRegistry(credentialsId: 'dockerhub-credentials', toolName: 'docker'){
// sh "docker run -d -p 3000:3000 princewillopah/frontend:v-1.0.1"
// }
// }
// }
// }
}
}
// pipeline {
// agent any
// environment {
// DOCKER_CREDENTIALS_ID = 'dockerhub-credentials'
// }
// stages {
// stage('Debug') {
// steps {
// script {
// sh 'id'
// sh 'groups'
// sh 'docker ps'
// }
// }
// }
// stage('Docker Login') {
// steps {
// script {
// withDockerRegistry(credentialsId: DOCKER_CREDENTIALS_ID) {
// sh 'docker info'
// }
// }
// }
// }
// // Add your existing stages here
// }
// }