-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
57 lines (50 loc) · 1.26 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
#!/usr/bin/groovy
@Library('github.com/fabric8io/fabric8-pipeline-library@master')
def canaryVersion = "1.0.${env.BUILD_NUMBER}"
def utils = new io.fabric8.Utils()
def stashName = "buildpod.${env.JOB_NAME}.${env.BUILD_NUMBER}".replace('-', '_').replace('/', '_')
def envStage = utils.environmentNamespace('stage')
def envProd = utils.environmentNamespace('run')
mavenNode {
checkout scm
if (utils.isCI()){
mavenCI{}
} else if (utils.isCD()){
echo 'NOTE: running pipelines for the first time will take longer as build and base docker images are pulled onto the node'
container(name: 'maven') {
stage('Build Release'){
mavenCanaryRelease {
version = canaryVersion
}
//stash deployment manifests
stash includes: '**/*.yml', name: stashName
}
stage('Rollout to Stage'){
apply{
environment = envStage
}
}
}
}
}
if (utils.isCD()){
node {
stage('Approve'){
approve {
room = null
version = canaryVersion
environment = 'Stage'
}
}
}
clientsNode{
container(name: 'clients') {
stage('Rollout to Run'){
unstash stashName
apply{
environment = envProd
}
}
}
}
}