-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJenkinsfile
97 lines (83 loc) · 3.16 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
pipeline {
agent any
environment {
DOCKERHUB_USERNAME = "the127terminal"
APP_NAME = "ocr"
IMAGE_TAG = "${BUILD_NUMBER}"
IMAGE_NAME = "${DOCKERHUB_USERNAME}/${APP_NAME}"
REGISTRY_CREDS = 'dockerhub'
}
stages {
stage('Clenup workspace') {
steps {
script {
cleanWs()
}
}
}
stage('Pull docker image') {
steps {
script {
git credentialsId: 'github',
url: 'https://github.com/Terminal127/OCR',
branch: 'main'
}
}
}
stage('Build docker image') {
steps {
script {
def lowercaseTag = "${IMAGE_TAG}".toLowerCase()
def dockerImageNameWithTag = "${IMAGE_NAME}:${lowercaseTag}"
// Change the working directory to the 'OCR' directory
dir('OCR') {
docker.withRegistry('https://registry.hub.docker.com', REGISTRY_CREDS) {
def customImage = docker.build(dockerImageNameWithTag)
customImage.push()
}
}
}
}
}
stage('Delete docker image') {
steps {
script {
def lowercaseTag = "${IMAGE_TAG}".toLowerCase()
def dockerImageNameWithTag = "${IMAGE_NAME}:${lowercaseTag}"
// Change the working directory to the 'OCR' directory
sh "docker rmi ${dockerImageNameWithTag}"
sh "docker rmi registry.hub.docker.com/the127terminal/ocr:${BUILD_NUMBER}"
}
}
}
stage('Updating the manifests') {
steps {
script {
def lowercaseTag = "${IMAGE_TAG}".toLowerCase()
def dockerImageNameWithTag = "${IMAGE_NAME}:${lowercaseTag}"
// Change the working directory to the 'OCR' directory
dir('manifests') {
sh "git checkout release"
sh "sed -i 's|image: ${DOCKERHUB_USERNAME}/${APP_NAME}:.*|image: ${DOCKERHUB_USERNAME}/${APP_NAME}:${IMAGE_TAG}|g' deployment.yml"
}
}
}
}
stage('push to repository') {
steps {
script {
// Change the working directory to the 'manifests' directory
dir('manifests') {
sh "git config --global user.name 'Terminal127'"
sh "git config --global user.email '[email protected]'"
sh "git add deployment.yml"
sh "git commit -m 'updated deployment.yml'"
withCredentials([gitUsernamePassword(credentialsId: 'github')]) {
sh "git push https://github.com/Terminal127/OCR release"
}
}
}
}
}
}
}