-
Notifications
You must be signed in to change notification settings - Fork 53
/
Jenkinsfile
367 lines (338 loc) · 16 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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
@Library('sec_ci_libs@v2-latest') _
def master_branches = ["master", ] as String[]
pipeline {
agent none
environment {
IMAGE = "dcos-ansible-bundle"
DOCKER = credentials('docker-hub-credentials')
}
options {
disableConcurrentBuilds()
}
stages {
stage("Verify author for PR") {
agent {
label "py36"
}
when {
beforeAgent true
changeRequest()
}
steps {
user_is_authorized(master_branches, '8b793652-f26a-422f-a9ba-0d1e47eb9d89', '#sre')
}
}
stage('lint') {
agent {
label "py36"
}
steps {
ansiColor('xterm') {
script {
env.LINUX_DOUBLE_SPOT_PRICE = sh (returnStdout: true, script: "#!/usr/bin/env sh\nset +o errexit\ncurl --silent --location http://spot-price.s3.amazonaws.com/spot.js | sed -e 's/callback(//' -e 's/);//'| jq -r '.config.regions[] | select(.region == \"us-east\") | .instanceTypes[].sizes[] | select(.size == \"m5.xlarge\") | .valueColumns[] | select(.name == \"linux\") | (.prices.USD | tonumber | . * 2)' 2>/dev/null || echo ''").trim()
env.RHEL_TRIPLE_LINUX_SPOT_PRICE = sh (returnStdout: true, script: "#!/usr/bin/env sh\nset +o errexit\ncurl --silent --location http://spot-price.s3.amazonaws.com/spot.js | sed -e 's/callback(//' -e 's/);//'| jq -r '.config.regions[] | select(.region == \"us-east\") | .instanceTypes[].sizes[] | select(.size == \"m5.xlarge\") | .valueColumns[] | select(.name == \"linux\") | (.prices.USD | tonumber | . * 3)' 2>/dev/null || echo ''").trim()
env.PIP_CACHE_DIR = "${WORKSPACE}/.pip-cache"
env.PYTHONUNBUFFERED = 1
env.ANSIBLE_TRANSPORT = "paramiko"
env.ANSIBLE_SSH_CONTROL_PATH = "/var/shm/control:%h:%p:%r"
env.ANSIBLE_SSH_CONTROL_PATH_DIR = "/var/shm/control"
env.ANSIBLE_SSH_ARGS = "-C -o PreferredAuthentications=publickey -o ServerAliveInterval=30 -o ControlMaster=auto -o ControlPersist=60s"
}
retry(3) {
sh("pip install -r test_requirements.txt")
}
sh("yamllint -c .yamllint.yml .")
sh("ansible-lint roles/* -v")
}
}
}
stage('molecule test') {
parallel {
stage('molecule test (ec2_centos7) / Open') {
agent {
label "py36"
}
steps {
ansiColor('xterm') {
withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', credentialsId: 'arn:aws:iam::850970822230:user/jenkins', accessKeyVariable: 'AWS_ACCESS_KEY_ID', secretKeyVariable: 'AWS_SECRET_ACCESS_KEY'],
]) {
timeout(time: 60, unit: 'MINUTES') {
sh '''
export ANSIBLE_LOCAL_TEMP="${WORKSPACE}/.ansible-tmp-centos7-open"
export ANSIBLE_ASYNC_DIR="${WORKSPACE}/.ansible-async-centos7-open"
export MOLECULE_EPHEMERAL_DIRECTORY="${WORKSPACE}/.molecule-centos7-open"
rm -rf \${MOLECULE_EPHEMERAL_DIRECTORY} \${ANSIBLE_LOCAL_TEMP} \${ANSIBLE_ASYNC_DIR}
pip install -r test_requirements.txt
cp group_vars/all/dcos.yaml.example group_vars/all/dcos.yaml
sed -i -e "s/spot_price_max_calc:.*/spot_price_max_calc: \${LINUX_DOUBLE_SPOT_PRICE}/" molecule/ec2/create.yml
echo '###### group_vars/all/dcos.yaml #####'
cat group_vars/all/dcos.yaml
echo '#####################################'
molecule test --scenario-name ec2_centos7
'''
}
}
}
}
post {
aborted {
ansiColor('xterm') {
withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', credentialsId: 'arn:aws:iam::850970822230:user/jenkins', accessKeyVariable: 'AWS_ACCESS_KEY_ID', secretKeyVariable: 'AWS_SECRET_ACCESS_KEY'],
]) {
timeout(time: 20, unit: 'MINUTES') {
sh '''
export ANSIBLE_LOCAL_TEMP="${WORKSPACE}/.ansible-tmp-centos7-open"
export ANSIBLE_ASYNC_DIR="${WORKSPACE}/.ansible-async-centos7-open"
export MOLECULE_EPHEMERAL_DIRECTORY="${WORKSPACE}/.molecule-centos7-open"
molecule destroy --scenario-name ec2_centos7
'''
}
}
}
}
}
}
stage('molecule test (ec2_centos7) / Enterprise') {
agent {
label "py36"
}
environment {
LICENSE = credentials("DCOS_ANSIBLE_LICENSE")
}
steps {
ansiColor('xterm') {
withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', credentialsId: 'arn:aws:iam::850970822230:user/jenkins', accessKeyVariable: 'AWS_ACCESS_KEY_ID', secretKeyVariable: 'AWS_SECRET_ACCESS_KEY'],
]) {
timeout(time: 60, unit: 'MINUTES') {
sh '''
export ANSIBLE_LOCAL_TEMP="${WORKSPACE}/.ansible-tmp-centos7-enterprise"
export ANSIBLE_ASYNC_DIR="${WORKSPACE}/.ansible-async-centos7-enterprise"
export MOLECULE_EPHEMERAL_DIRECTORY="${WORKSPACE}/.molecule-centos7-enterprise"
rm -rf \${MOLECULE_EPHEMERAL_DIRECTORY} \${ANSIBLE_LOCAL_TEMP} \${ANSIBLE_ASYNC_DIR}
pip install -r test_requirements.txt
cp group_vars/all/dcos-ee.yaml.example group_vars/all/dcos.yaml
echo 'writing license_key_contents'; sed -i -e \"s/license_key_contents:.*/license_key_contents: '\${LICENSE}'/\" group_vars/all/dcos.yaml
sed -i -e 's/bootstrap1-centos7/bootstrap1-centos7-enterprise/' -e 's/master1-centos7/master1-centos7-enterprise/' -e 's/agent1-centos7/agent1-centos7-enterprise/' molecule/ec2_centos7/molecule.yml
sed -i -e "s/spot_price_max_calc:.*/spot_price_max_calc: \${LINUX_DOUBLE_SPOT_PRICE}/" molecule/ec2/create.yml
echo '###### group_vars/all/dcos.yaml #####'
cat group_vars/all/dcos.yaml
echo '#####################################'
molecule test --scenario-name ec2_centos7
'''
}
}
}
}
post {
aborted {
ansiColor('xterm') {
withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', credentialsId: 'arn:aws:iam::850970822230:user/jenkins', accessKeyVariable: 'AWS_ACCESS_KEY_ID', secretKeyVariable: 'AWS_SECRET_ACCESS_KEY'],
]) {
timeout(time: 20, unit: 'MINUTES') {
sh '''
export ANSIBLE_LOCAL_TEMP="${WORKSPACE}/.ansible-tmp-centos7-enterprise"
export ANSIBLE_ASYNC_DIR="${WORKSPACE}/.ansible-async-centos7-enterprise"
export MOLECULE_EPHEMERAL_DIRECTORY="${WORKSPACE}/.molecule-centos7-enterprise"
molecule destroy --scenario-name ec2_centos7
'''
}
}
}
}
}
}
stage('molecule test (ec2_rhel7) / Open') {
agent {
label "py36"
}
steps {
ansiColor('xterm') {
withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', credentialsId: 'arn:aws:iam::850970822230:user/jenkins', accessKeyVariable: 'AWS_ACCESS_KEY_ID', secretKeyVariable: 'AWS_SECRET_ACCESS_KEY'],
]) {
timeout(time: 60, unit: 'MINUTES') {
sh '''
export ANSIBLE_LOCAL_TEMP="${WORKSPACE}/.ansible-tmp-rhel7-open"
export ANSIBLE_ASYNC_DIR="${WORKSPACE}/.ansible-async-rhel7-open"
export MOLECULE_EPHEMERAL_DIRECTORY="${WORKSPACE}/.molecule-rhel7-open"
rm -rf \${MOLECULE_EPHEMERAL_DIRECTORY} \${ANSIBLE_LOCAL_TEMP} \${ANSIBLE_ASYNC_DIR}
pip install -r test_requirements.txt
cp group_vars/all/dcos.yaml.example group_vars/all/dcos.yaml
sed -i -e \"s/spot_price_max_calc:.*/spot_price_max_calc: \${RHEL_TRIPLE_LINUX_SPOT_PRICE}/" molecule/ec2/create.yml
molecule test --scenario-name ec2_rhel7
'''
}
}
}
}
post {
aborted {
ansiColor('xterm') {
withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', credentialsId: 'arn:aws:iam::850970822230:user/jenkins', accessKeyVariable: 'AWS_ACCESS_KEY_ID', secretKeyVariable: 'AWS_SECRET_ACCESS_KEY'],
]) {
timeout(time: 20, unit: 'MINUTES') {
sh '''
export ANSIBLE_LOCAL_TEMP="${WORKSPACE}/.ansible-tmp-rhel7-open"
export ANSIBLE_ASYNC_DIR="${WORKSPACE}/.ansible-async-rhel7-open"
export MOLECULE_EPHEMERAL_DIRECTORY="${WORKSPACE}/.molecule-rhel7-open"
molecule destroy --scenario-name ec2_rhel7
'''
}
}
}
}
}
}
stage('molecule test (ec2_rhel7) / Enterprise') {
agent {
label "py36"
}
environment {
LICENSE = credentials("DCOS_ANSIBLE_LICENSE")
}
steps {
ansiColor('xterm') {
withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', credentialsId: 'arn:aws:iam::850970822230:user/jenkins', accessKeyVariable: 'AWS_ACCESS_KEY_ID', secretKeyVariable: 'AWS_SECRET_ACCESS_KEY'],
]) {
timeout(time: 60, unit: 'MINUTES') {
sh '''
exit 0
export ANSIBLE_LOCAL_TEMP="${WORKSPACE}/.ansible-tmp-rhel7-enterprise"
export ANSIBLE_ASYNC_DIR="${WORKSPACE}/.ansible-async-rhel7-enterprise"
export MOLECULE_EPHEMERAL_DIRECTORY="${WORKSPACE}/.molecule-rhel7-enterprise"
rm -rf \${MOLECULE_EPHEMERAL_DIRECTORY} \${ANSIBLE_LOCAL_TEMP} \${ANSIBLE_ASYNC_DIR}
pip install -r test_requirements.txt
cp group_vars/all/dcos-ee.yaml.example group_vars/all/dcos.yaml
echo 'writing license_key_contents'; sed -i -e \"s/license_key_contents:.*/license_key_contents: \${LICENSE}/\" group_vars/all/dcos.yaml
sed -i -e 's/bootstrap1-rhel7/bootstrap1-rhel7-enterprise/' -e 's/master1-rhel7/master1-rhel7-enterprise/' -e 's/agent1-rhel7/agent1-rhel7-enterprise/' molecule/ec2_rhel7/molecule.yml
sed -i -e "s/spot_price_max_calc:.*/spot_price_max_calc: \${RHEL_TRIPLE_LINUX_SPOT_PRICE}/" molecule/ec2/create.yml
echo '###### group_vars/all/dcos.yaml #####'
cat group_vars/all/dcos.yaml
echo '#####################################'
molecule test --scenario-name ec2_rhel7
'''
}
}
}
}
post {
aborted {
ansiColor('xterm') {
withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', credentialsId: 'arn:aws:iam::850970822230:user/jenkins', accessKeyVariable: 'AWS_ACCESS_KEY_ID', secretKeyVariable: 'AWS_SECRET_ACCESS_KEY'],
]) {
timeout(time: 20, unit: 'MINUTES') {
sh '''
export ANSIBLE_LOCAL_TEMP="${WORKSPACE}/.ansible-tmp-rhel7-enterprise"
export ANSIBLE_ASYNC_DIR="${WORKSPACE}/.ansible-async-rhel7-enterprise"
export MOLECULE_EPHEMERAL_DIRECTORY="${WORKSPACE}/.molecule-rhel7-enterprise"
molecule destroy --scenario-name ec2_rhel7
'''
}
}
}
}
}
}
stage('molecule test (ec2_gpu) / GPU') {
when {
beforeAgent true
changeset "roles/dcos_gpu/*"
}
agent {
label "py36"
}
steps {
ansiColor('xterm') {
withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', credentialsId: 'arn:aws:iam::850970822230:user/jenkins', accessKeyVariable: 'AWS_ACCESS_KEY_ID', secretKeyVariable: 'AWS_SECRET_ACCESS_KEY'],
]) {
timeout(time: 60, unit: 'MINUTES') {
sh '''
export ANSIBLE_LOCAL_TEMP="${WORKSPACE}/.ansible-tmp-gpu"
export ANSIBLE_ASYNC_DIR="${WORKSPACE}/.ansible-async-gpu"
export MOLECULE_EPHEMERAL_DIRECTORY="${WORKSPACE}/.molecule-gpu"
rm -rf \${MOLECULE_EPHEMERAL_DIRECTORY} \${ANSIBLE_LOCAL_TEMP} \${ANSIBLE_ASYNC_DIR}
pip install -r test_requirements.txt
cp group_vars/all/dcos.yaml.example group_vars/all/dcos.yaml
molecule test --scenario-name ec2_gpu
'''
}
}
}
}
post {
aborted {
ansiColor('xterm') {
withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', credentialsId: 'arn:aws:iam::850970822230:user/jenkins', accessKeyVariable: 'AWS_ACCESS_KEY_ID', secretKeyVariable: 'AWS_SECRET_ACCESS_KEY'],
]) {
timeout(time: 20, unit: 'MINUTES') {
sh '''
export ANSIBLE_LOCAL_TEMP="${WORKSPACE}/.ansible-tmp-gpu"
export ANSIBLE_ASYNC_DIR="${WORKSPACE}/.ansible-async-gpu"
export MOLECULE_EPHEMERAL_DIRECTORY="${WORKSPACE}/.molecule-gpu"
molecule destroy --scenario-name ec2_gpu
'''
}
}
}
}
}
}
}
}
stage('publish') {
parallel {
stage('galaxy.ansible.com') {
when {
beforeAgent true
not { changeset "Jenkinsfile" }
branch 'master'
}
agent {
label "py36"
}
environment {
GALAXY_API_KEY = credentials('dcos-sre-robot-galaxy-ansible-api-token')
}
steps {
retry(3) {
sh("pip install -r test_requirements.txt")
}
sh("if [ -f ./galaxy.yml ]; then mazer build; fi")
// sh("for i in ./releases/*; do mazer publish --api-key=${GALAXY_API_KEY} \${i}; done")
}
}
stage('hub.docker.com') {
when {
beforeAgent true
not { changeset "Jenkinsfile" }
not { changeset "galaxy.yml" }
anyOf {
branch 'master';
branch 'feature/*';
}
}
agent {
label "mesos"
}
steps {
// Login to the Docker registry.
retry(3) {
sh("docker login -u ${DOCKER_USR} -p ${DOCKER_PSW}")
sh("docker build -t mesosphere/${IMAGE}:latest .")
script {
// Calculate Docker image tag based on commit id.
env.dockerTag = sh(script: "echo \$(git rev-parse --abbrev-ref HEAD)-\$(git rev-parse --short HEAD)", returnStdout: true).replaceAll('/','-').trim()
// Tag and push the image we built earlier.
sh("docker tag mesosphere/${IMAGE}:latest mesosphere/${IMAGE}:${env.dockerTag}")
sh("docker push mesosphere/${IMAGE}:${env.dockerTag}")
if (env.BRANCH_NAME == 'master') {
// Only overwrite latest if we're on master
sh("docker push mesosphere/${IMAGE}:latest")
}
}
}
}
}
}
}
}
}