This repository has been archived by the owner on Jul 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
JenkinsFile
198 lines (184 loc) · 7.92 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
#!/usr/bin/groovy
node {
def root = pwd()
def mvn = tool 'M3'
def zapHome = tool 'ZAProxy_v2_5_0'
def nodejs = tool 'NodeJS_6'
def venvDir = "${root}/build_env"
def venvPython = "${venvDir}/bin/python"
def venvPip = "${venvDir}/bin/pip"
def venvMkdocs = "${venvDir}/bin/mkdocs"
stage("Config") {
// clone the configuration repository and copy the current configuration
def configDir = "${root}/configuration"
def configFile = "${root}/config.json"
dir(configDir) {
git url: "${env.CONFIGURATION_URL}", credentialsId: "${env.CONFIGURATION_CREDS}"
sh "mv ${configDir}/${ENVIRONMENT}-config.json ${configFile}"
deleteDir()
}
// read the current configuration
def configJson = readJSON file: "${configFile}"
for (param in configJson.credparams + configJson.jobparams) {
env."${param.name}" = (param.type == "booleanParam") ? "${param.defaultvalue}".toBoolean() : "${param.defaultvalue}"
}
}
stage("Setup") {
deleteDir()
echo "Cloning source repository..."
// github is open gitlab requires credentials to clone
if(env.USE_GIT_CREDS.toBoolean()) {
git url: "${env.GIT_URL}", branch: "${env.GIT_BRANCH}", credentialsId: "${env.GITLAB_CREDS}"
} else {
git url: "${env.GIT_URL}", branch: "${env.GIT_BRANCH}"
}
echo "Checking build system depdendencies:"
sh "python --version"
sh "python -m pip --version"
sh "python -m pip show virtualenv"
echo "Creating virtualenv and installing mkdocs"
sh "python -m virtualenv --clear --no-download ${venvDir}"
sh "${venvPip} install -r requirements.txt --no-index --find-links file://${root}/vendor"
}
def appvers = sh(script: "git describe --long --tags --always | sed 's/\\./-/'g", returnStdout: true)
appvers = appvers.trim()
def appName = "pz-docs-${appvers}"
stage("Build") {
sh "${venvMkdocs} --help"
sh "${venvMkdocs} --version"
sh "${venvMkdocs} build"
}
stage("Archive") {
// Build Tarball
def targetFiles = "Staticfile manifest.jenkins.yml site"
def tarball = "pz-docs.tar.gz"
sh "tar cvvzf ${tarball} ${targetFiles}"
// Check if Exists
def getDependencyStatus = sh(script: """mvn -X --settings ~/.m2/settings.xml dependency:get \
-Dmaven.repo.local="${root}/.m2/repository" \
-DrepositoryId=nexus \
-DartifactId=pz-docs \
-Dversion=${appvers} \
-DgroupId="org.venice.beachfront" \
-Dpackaging=tar.gz \
-DremoteRepositories="nexus::default::${env.ARTIFACT_STORAGE_DEPLOY_URL}" \
""", returnStatus: true)
echo "dependency status = ${getDependencyStatus}"
if (getDependencyStatus == 0) {
echo "Artifact version ${appvers} exists in Nexus, nothing to do"
} else {
sh """mvn -X --settings ~/.m2/settings.xml deploy:deploy-file -Dfile=${root}/${tarball} \
-DrepositoryId=nexus \
-Durl="${env.ARTIFACT_STORAGE_DEPLOY_URL}" \
-DgroupId="org.venice.beachfront" \
-DgeneratePom=false \
-Dpackaging=tar.gz \
-Dmaven.repo.local="${root}/.m2/repository" \
-DartifactId=pz-docs \
-Dversion=${appvers}
"""
}
}
stage ("Int Deploy") {
if(!fileExists('.cf')) {
sh "mkdir -p .cf"
}
withEnv(['CF_HOME=.cf']) {
withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: "${env.PCF_CREDS}", usernameVariable: 'CFUSER', passwordVariable: 'CFPASS']]) {
sh "cf api ${env.PCF_API_ENDPOINT}"
sh "cf auth ${CFUSER} ${CFPASS}"
sh "cf target -o ${env.PCF_ORG} -s ${env.PHASE_ONE_PCF_SPACE}"
sh "cf push ${appName} -f Staticfile --hostname ${appName} -d ${env.PHASE_ONE_PCF_DOMAIN} --no-start -m 512M --no-route"
sh "cf set-env ${appName} SPACE ${env.PHASE_ONE_PCF_SPACE}"
sh "cf set-env ${appName} DOMAIN ${env.PHASE_ONE_PCF_DOMAIN}"
try {
sh "cf start ${appName}"
} catch (Exception e) {
//sh "cf logs --recent ${appName}"
sh "cf delete ${appName} -f -r"
error("Error during application start. Deleting ${appName} and failing the build.")
}
}
}
if(!env.SKIP_SCANS.toBoolean()) {
withCredentials([[$class: 'StringBinding', credentialsId: "${env.THREADFIX_API_KEY}", variable: 'THREADFIX_KEY']]) {
sh "mkdir -p ${root}/zap-out"
sh """${zapHome}/zap.sh -cmd \
-quickout ${root}/zap-out/zap.xml \
-quickurl https://${appName}.${env.PHASE_ONE_PCF_DOMAIN} \
"""
sh "cat ${root}/zap-out/zap.xml"
sh "/bin/curl -v --insecure -H 'Accept: application/json' -X POST --form file=@${root}/zap-out/zap.xml ${env.THREADFIX_URL}/rest/latest/applications/${THREADFIX_ID}/upload?apiKey=${THREADFIX_KEY}"
}
}
withEnv(['CF_HOME=.cf']) {
withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: "${env.PCF_CREDS}", usernameVariable: 'CFUSER', passwordVariable: 'CFPASS']]) {
sh "cf api ${env.PCF_API_ENDPOINT}"
sh "cf auth ${CFUSER} ${CFPASS}"
sh "cf target -o ${env.PCF_ORG} -s ${env.PHASE_ONE_PCF_SPACE}"
def legacyAppNames = sh(script: "cf routes | grep \"pz-docs\" | awk '{print \$4}'", returnStdout: true)
sh "cf map-route ${appName} ${env.PHASE_ONE_PCF_DOMAIN} --hostname pz-docs"
// Remove Legacy applications
for (Object legacyApp : legacyAppNames.trim().tokenize(',')) {
def legacyAppName = legacyApp.toString().trim()
if (legacyAppName != appName) {
sh "cf unmap-route ${legacyAppName} ${env.PHASE_ONE_PCF_DOMAIN} --hostname pz-docs"
sh "cf delete -f ${legacyAppName} -r"
}
}
}
}
}
if(env.DEPLOY_PHASE_TWO.toBoolean()) {
stage('Stage Deploy') {
if(!fileExists('.cf')) {
sh "mkdir -p .cf"
}
withEnv(['CF_HOME=.cf']) {
withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: "${env.PCF_CREDS}", usernameVariable: 'CFUSER', passwordVariable: 'CFPASS']]) {
sh "cf api ${env.PCF_API_ENDPOINT}"
sh "cf auth ${CFUSER} ${CFPASS}"
sh "cf target -o ${env.PCF_ORG} -s ${env.PHASE_TWO_PCF_SPACE}"
sh "cf push ${appName} --hostname ${appName} -f Staticfile -d ${env.PHASE_TWO_PCF_DOMAIN} --no-start -m 512M --no-route"
sh "cf set-env ${appName} SPACE ${env.PHASE_TWO_PCF_SPACE}"
sh "cf set-env ${appName} DOMAIN ${env.PHASE_TWO_PCF_DOMAIN}"
try {
sh "cf start ${appName}"
} catch (Exception e) {
//sh "cf logs --recent ${appName}"
sh "cf delete ${appName} -f -r"
error("Error during application start. Deleting ${appName} and failing the build.")
}
}
}
if(!env.SKIP_SCANS.toBoolean()) {
withCredentials([[$class: 'StringBinding', credentialsId: "${env.THREADFIX_API_KEY}", variable: 'THREADFIX_KEY']]) {
sh "mkdir -p ${root}/zap-out"
sh """${zapHome}/zap.sh -cmd \
-quickout ${root}/zap-out/zap.xml \
-quickurl https://${appName}.${env.PHASE_TWO_PCF_DOMAIN} \
"""
sh "cat ${root}/zap-out/zap.xml"
sh "/bin/curl -v --insecure -H 'Accept: application/json' -X POST --form file=@${root}/zap-out/zap.xml ${env.THREADFIX_URL}/rest/latest/applications/${THREADFIX_ID}/upload?apiKey=${THREADFIX_KEY}"
}
}
withEnv(['CF_HOME=.cf']) {
withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: "${env.PCF_CREDS}", usernameVariable: 'CFUSER', passwordVariable: 'CFPASS']]) {
sh "cf api ${env.PCF_API_ENDPOINT}"
sh "cf auth ${CFUSER} ${CFPASS}"
sh "cf target -o ${env.PCF_ORG} -s ${env.PHASE_TWO_PCF_SPACE}"
def legacyAppNames = sh(script: "cf routes | grep \"pz-docs\" | awk '{print \$4}'", returnStdout: true)
sh "cf map-route ${appName} ${env.PHASE_TWO_PCF_DOMAIN} --hostname pz-docs"
// Remove Legacy applications
for (Object legacyApp : legacyAppNames.trim().tokenize(',')) {
def legacyAppName = legacyApp.toString().trim()
if (legacyAppName != appName) {
sh "cf unmap-route ${legacyAppName} ${env.PHASE_TWO_PCF_DOMAIN} --hostname pz-docs"
sh "cf delete -f ${legacyAppName} -r"
}
}
}
}
}
}
}