forked from kalpitrcc/MLOPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
110 lines (102 loc) · 2.33 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
pipeline {
agent {
kubernetes {
yaml '''
apiVersion: v1
kind: Pod
spec:
containers:
- name: git
image: alpine/git:latest
command:
- cat
tty: true
- name: docker
image: docker:latest
command:
- cat
tty: true
volumeMounts:
- mountPath: /var/run/docker.sock
name: docker-sock
volumes:
- name: docker-sock
hostPath:
path: /var/run/docker.sock
'''
}
}
environment {
DOCKER_HUB_CREDENTIALS = credentials('DEVSDS_DOCKERHUB')
}
stages {
stage('Clone') {
steps {
container('git') {
git branch: 'master', changelog: false, poll: false, url: 'https://github.com/kalpitrcc/MLOPS.git'
}
}
}
stage('Build-Docker-Image') {
steps {
container('docker') {
sh 'docker build -t devsds/modeltraining:$BUILD_NUMBER .'
}
}
}
stage('Login-Into-Docker') {
steps {
container('docker') {
sh 'echo $DOCKER_HUB_CREDENTIALS_PSW | docker login -u $DOCKER_HUB_CREDENTIALS_USR --password-stdin'
}
}
}
stage('Push-Image-to-DockerHub') {
steps {
container('docker') {
sh 'docker push devsds/modeltraining:$BUILD_NUMBER'
}
}
}
stage('Pre-processing-test') {
agent {
kubernetes {
yaml """
apiVersion: v1
kind: Pod
spec:
containers:
- name: modeltraining
image: "devsds/modeltraining:${BUILD_NUMBER}"
command:
- cat
tty: true
volumeMounts:
- mountPath: "/home/jovyan/results/*"
name: "workspace-volume"
volumes:
- name: "workspace-volume"
persistentVolumeClaim:
claimName: claim1
""".stripIndent()
}
}
steps {
container('modeltraining') {
sh 'python3 --version'
sh 'chmod +x preprocessing.py'
sh 'pwd'
sh 'python3 preprocessing.py'
sh 'date'
}
}
}
}
post {
always {
container('docker') {
sh 'docker images'
}
}
}
}