-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathmonitorDeployment.js
73 lines (59 loc) · 2.31 KB
/
monitorDeployment.js
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
'use strict';
/* eslint no-use-before-define: 0 */
const BbPromise = require('bluebird');
const async = require('async');
module.exports = {
monitorDeployment(deploymentName, action, frequency) {
const validStatuses = ['DONE'];
let deploymentStatus = null;
this.serverless.cli.log(`Checking deployment ${action} progress...`);
return new BbPromise((resolve, reject) => {
async.whilst(
() => validStatuses.indexOf(deploymentStatus) === -1,
(callback) => {
setTimeout(() => {
const params = {
project: this.serverless.service.provider.project,
};
return this.provider
.request('deploymentmanager', 'deployments', 'list', params)
.then((response) => {
// if actions is "remove" and no deployments are left set to "DONE"
if (!response.deployments && action === 'remove') {
deploymentStatus = 'DONE';
callback();
}
const deployment = response.deployments.find((dep) => dep.name === deploymentName);
// if actions is "remove" and deployment disappeared then set to "DONE"
if (!deployment && action === 'remove') {
deploymentStatus = 'DONE';
callback();
}
throwErrorIfDeploymentFails(deployment);
deploymentStatus = deployment.operation.status;
this.serverless.cli.printDot();
return callback();
})
.catch((error) => {
reject(error);
});
}, frequency);
},
() => {
// empty console.log for a prettier output
this.serverless.cli.consoleLog('');
this.serverless.cli.log('Done...');
resolve(deploymentStatus);
}
);
});
},
};
const throwErrorIfDeploymentFails = (deployment) => {
if (deployment.operation.error && deployment.operation.error.errors.length) {
const errorCode = deployment.operation.error.errors[0].code;
const parsedDetails = deployment.operation.error.errors[0].message;
const errorMessage = [`Deployment failed: ${errorCode}\n\n`, ` ${parsedDetails}`].join('');
throw new Error(errorMessage);
}
};