forked from prometeo-cloud/prometeo_web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
170 lines (156 loc) · 5.47 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
pipeline {
environment {
APP_VERSION = ""
}
agent none
options {
skipDefaultCheckout()
}
stages {
stage("Init") {
agent any
steps {
script {
sh "oc version"
}
}
}
stage('Create Image Builder Prometeoweb') {
when {
expression {
openshift.withCluster() {
openshift.withProject('prometeo-dev') {
return !openshift.selector("bc", "prometeoweb").exists();
}
}
}
}
agent any
steps {
script {
openshift.withCluster() {
openshift.withProject('prometeo-dev') {
openshift.newBuild("--name=prometeoweb", "--image-stream=prometeo-dev/java:latest", "--binary")
}
}
}
}
}
stage("Maven build") {
agent {
label 'maven'
}
steps {
script {
checkout scm
def pom = readMavenPom file: "pom.xml"
sh "mvn clean package -DskipTests"
APP_VERSION = pom.version
artifactId = pom.artifactId
groupId = pom.groupId.replace(".", "/")
packaging = pom.packaging
NEXUS_ARTIFACT_PATH = "${groupId}/${artifactId}/${APP_VERSION}/${artifactId}-${APP_VERSION}.${packaging}"
echo "Building container image with artifact = ${NEXUS_ARTIFACT_PATH}"
// This is here until we get the Nexus repo setup
openshift.withCluster() {
openshift.withProject('prometeo-dev') {
openshift.selector("bc", "prometeoweb").startBuild("--from-file=target/${artifactId}-${APP_VERSION}.${packaging}", "--wait")
}
}
}
}
}
// stage('Build Application Image') {
// agent { label 'maven' }
// steps {
// script {
// openshift.withCluster() {
// openshift.selector("bc", "prometeoweb").startBuild("--from-file=target/${artifactId}-${APP_VERSION}.${packaging}", "--wait")
// }
// }
// }
// }
stage('Dev Deployment') {
agent any
steps {
timeout(time: 5, unit: 'MINUTES') {
input 'Deploy into DEV environment?'
}
}
}
stage('Promote to DEV') {
agent any
steps {
script {
openshift.withCluster() {
openshift.withProject('prometeo-dev') {
openshift.tag("prometeoweb:latest", "prometeoweb:dev")
}
}
}
}
}
stage('Create app in DEV if not already there') {
agent any
when {
expression {
openshift.withCluster() {
openshift.withProject('prometeo-dev') {
return !openshift.selector("dc", "prometeoweb").exists();
}
}
}
}
steps {
script {
openshift.withCluster() {
openshift.withProject('prometeo-dev') {
openshift.newApp("prometeo-dev/prometeoweb:dev", "--name=prometeoweb -e ADMIN_PASSWORD=test -e PROMETEO_AUTHORIZATION=test -e PROMETEO_URL=http://prometeo").narrow('svc').expose()
}
}
}
}
}
stage('Test Deployment') {
agent any
steps {
timeout(time: 5, unit: 'MINUTES') {
input 'Do you approve deployment to Test environment ?'
}
}
}
stage('Promote to TEST') {
agent any
steps {
script {
openshift.withCluster() {
openshift.withProject('prometeo-dev') {
openshift.tag("prometeoweb:dev", "prometeoweb:test")
}
}
}
}
}
stage('Create app in TEST if not already there') {
agent any
when {
expression {
openshift.withCluster() {
openshift.withProject('prometeo-test') {
return !openshift.selector("dc", "prometeoweb").exists();
}
}
}
}
steps {
script {
openshift.withCluster() {
openshift.withProject('prometeo-test') {
openshift.newApp("prometeo-dev/prometeoweb:test", "--name=prometeoweb -e ADMIN_PASSWORD=test -e PROMETEO_AUTHORIZATION=test -e PROMETEO_URL=http://prometeo").narrow('svc').expose()
}
}
}
}
}
}
}