-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathJenkinsfile
87 lines (87 loc) · 1.89 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
pipeline {
agent {
label 'maven'
}
stages {
stage('Build App') {
steps {
sh "mvn install"
}
}
stage('Create Image Builder') {
when {
expression {
openshift.withCluster() {
return !openshift.selector("bc", "mapit").exists();
}
}
}
steps {
script {
openshift.withCluster() {
openshift.newBuild("--name=mapit", "--image-stream=redhat-openjdk18-openshift:1.1", "--binary")
}
}
}
}
stage('Build Image') {
steps {
script {
openshift.withCluster() {
openshift.selector("bc", "mapit").startBuild("--from-file=target/mapit-spring.jar", "--wait")
}
}
}
}
stage('Promote to DEV') {
steps {
script {
openshift.withCluster() {
openshift.tag("mapit:latest", "mapit:dev")
}
}
}
}
stage('Create DEV') {
when {
expression {
openshift.withCluster() {
return !openshift.selector('dc', 'mapit-dev').exists()
}
}
}
steps {
script {
openshift.withCluster() {
openshift.newApp("mapit:latest", "--name=mapit-dev").narrow('svc').expose()
}
}
}
}
stage('Promote STAGE') {
steps {
script {
openshift.withCluster() {
openshift.tag("mapit:dev", "mapit:stage")
}
}
}
}
stage('Create STAGE') {
when {
expression {
openshift.withCluster() {
return !openshift.selector('dc', 'mapit-stage').exists()
}
}
}
steps {
script {
openshift.withCluster() {
openshift.newApp("mapit:stage", "--name=mapit-stage").narrow('svc').expose()
}
}
}
}
}
}