-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
85 lines (85 loc) · 2.1 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
pipeline {
agent {
kubernetes {
cloud 'solutions1'
label 'jenkins-image-builder'
defaultContainer 'jnlp'
yaml """
apiVersion: v1
kind: Pod
spec:
serviceAccountName: sol-external-jenkins-diamanti-jenkins-sa
containers:
- name: docker
image: docker:1.11
command: ['cat']
tty: true
volumeMounts:
- name: dockersock
mountPath: /var/run/docker.sock
volumes:
- name: dockersock
hostPath:
path: /var/run/docker.sock
"""
}
}
options {
timestamps()
}
stages {
stage('Build Jenkins Docker Image') {
steps {
git 'https://github.com/kurktchiev/jenkins-pipeline-examples.git'
// updateGitlabCommitStatus name: 'docker-build-prod', state: 'pending'
container('docker') {
sh "docker login -u ${USERNAME} -p ${PW}"
sh "docker build -t ${IMAGE} ."
sh "docker tag ${IMAGE} ${IMAGE}:${TAG}.${BUILD_ID}"
}
}
post {
success {
sh "echo Success"
// updateGitlabCommitStatus name: 'docker-build-prod', state: 'success'
}
failure {
sh "echo Failure"
// updateGitlabCommitStatus name: 'docker-build-prod', state: 'failed'
}
}
}
stage('Push to Docker Hub') {
steps {
// updateGitlabCommitStatus name: 'docker-push-prod', state: 'pending'
container('docker') {
sh "docker push ${IMAGE}:${TAG}.${BUILD_ID}"
}
}
post {
success {
sh "echo Success"
// updateGitlabCommitStatus name: 'docker-push-prod', state: 'success'
}
failure {
sh "echo Failure"
// updateGitlabCommitStatus name: 'docker-push-prod', state: 'failed'
}
}
}
}
post {
success {
sh "echo Success"
// updateGitlabCommitStatus name: 'build-prod', state: 'success'
}
failure {
sh "echo Failure"
// updateGitlabCommitStatus name: 'build-prod', state: 'failed'
}
aborted {
sh "echo Aborted"
// updateGitlabCommitStatus name: 'build-prod', state: 'canceled'
}
}
}