-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathJenkinsfile
107 lines (94 loc) · 4.36 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
#!groovy
node {
// Variables
def tokens = "${env.JOB_NAME}".tokenize('/')
def appName = tokens[0]
def dockerUsername = "${DOCKER_WRI_USERNAME}"
def imageTag = "${dockerUsername}/${appName}:${env.BRANCH_NAME}.${env.BUILD_NUMBER}"
currentBuild.result = "SUCCESS"
checkout scm
properties([pipelineTriggers([[$class: 'GitHubPushTrigger']])])
try {
stage ('Build docker') {
switch ("${env.BRANCH_NAME}") {
// Roll out to staging
case "develop":
sh("docker -H :2375 build -t ${imageTag} --build-arg datasetEnv=production,preproduction --build-arg apiUrl=https://www.prepdata.org/api --build-arg basemapUrl=https://{s}.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png --build-arg rwApiUrl=https://api.resourcewatch.org/v1 --build-arg callbackUrl=https://staging.prepdata.org/auth .")
break
case "master":
sh("docker -H :2375 build -t ${imageTag} --build-arg datasetEnv=production --build-arg apiUrl=https://www.prepdata.org/api .")
sh("docker -H :2375 build -t ${dockerUsername}/${appName}:latest --build-arg datasetEnv=production --build-arg apiUrl=https://www.prepdata.org/api --build-arg MAPBOX_API_TOKEN=${env.PREP_MAPBOX_API_TOKEN} .")
break
default:
sh("docker -H :2375 build -t ${imageTag} .")
sh("docker -H :2375 build -t ${dockerUsername}/${appName}:latest .")
}
}
stage ('Run Tests') {
// sh('docker-compose -H :2375 -f docker-compose-test.yml build')
// sh('docker-compose -H :2375 -f docker-compose-test.yml run --rm test')
// sh('docker-compose -H :2375 -f docker-compose-test.yml stop')
}
stage('Push Docker') {
withCredentials([usernamePassword(credentialsId: 'WRI Docker Hub', usernameVariable: 'DOCKER_HUB_USERNAME', passwordVariable: 'DOCKER_HUB_PASSWORD')]) {
sh("docker -H :2375 login -u ${DOCKER_HUB_USERNAME} -p '${DOCKER_HUB_PASSWORD}'")
sh("docker -H :2375 push ${imageTag}")
if ("${env.BRANCH_NAME}" == "master") {
sh("docker -H :2375 push ${dockerUsername}/${appName}:latest")
}
sh("docker -H :2375 rmi ${imageTag}")
}
}
stage ("Deploy Application") {
switch ("${env.BRANCH_NAME}") {
// Roll out to staging
case "develop":
sh("echo Deploying to staging cluster")
sh("kubectl config use-context ${KUBECTL_CONTEXT_PREFIX}_${CLOUD_PROJECT_NAME}_${CLOUD_PROJECT_ZONE}_${KUBE_PROD_CLUSTER}")
sh("sed -i -e 's/{name}/${appName}/g' k8s/staging/*.yaml")
sh("kubectl apply -f k8s/staging/")
sh("kubectl set image deployment ${appName}-staging ${appName}-staging=${imageTag} --namespace=prep --record")
break
// Roll out to production
case "master":
def userInput = true
def didTimeout = false
if ("${SKIP_DEPLOYMENT_CONFIRMATION}" != "true") {
try {
timeout(time: 60, unit: 'SECONDS') {
userInput = input(
id: 'Proceed1', message: 'Confirm deployment', parameters: [
[$class: 'BooleanParameterDefinition', defaultValue: true, description: '', name: 'Please confirm you agree with this deployment']
])
}
}
catch(err) { // timeout reached or input false
sh("echo Aborted by user or timeout")
if('SYSTEM' == user.toString()) { // SYSTEM means timeout.
didTimeout = true
} else {
userInput = false
}
}
}
if ((userInput == true && !didTimeout) || "${SKIP_DEPLOYMENT_CONFIRMATION}" != "true") {
sh("echo Deploying to PROD cluster")
sh("kubectl config use-context ${KUBECTL_CONTEXT_PREFIX}_${CLOUD_PROJECT_NAME}_${CLOUD_PROJECT_ZONE}_${KUBE_PROD_CLUSTER}")
sh("kubectl apply -f k8s/production/")
sh("kubectl set image deployment ${appName} ${appName}=${imageTag} --namespace=prep --record")
} else {
sh("echo NOT DEPLOYED")
currentBuild.result = 'SUCCESS'
}
break
// Default behavior?
default:
echo "Default -> do nothing"
currentBuild.result = "SUCCESS"
}
}
} catch (err) {
currentBuild.result = "FAILURE"
throw err
}
}