-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathutil.js
275 lines (236 loc) · 7.23 KB
/
util.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
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
/* eslint-disable no-unused-vars */
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
const uuid = require('uuid');
const compute = require('@google-cloud/compute');
const PREFIX = 'gcloud-test-';
const instancesClient = new compute.InstancesClient();
// Get a unique ID to use for test resources.
function generateTestId() {
return `${PREFIX}-${uuid.v4()}`.substr(0, 30);
}
/**
* Get VM instances created more than one hour ago.
*/
async function getStaleVMInstances(prefix = PREFIX) {
const projectId = await instancesClient.getProjectId();
const result = [];
const currentDate = new Date();
currentDate.setHours(currentDate.getHours() - 1);
const aggListRequest = instancesClient.aggregatedListAsync({
project: projectId,
});
for await (const [zone, instancesObject] of aggListRequest) {
const instances = instancesObject.instances;
result.push(
...instances
.filter(
instance =>
new Date(instance.creationTimestamp) < currentDate &&
instance.name.startsWith(prefix)
)
.map(instance => {
return {
zone: zone.split('zones/')[1],
instanceName: instance.name,
timestamp: instance.creationTimestamp,
};
})
);
}
return result;
}
async function deleteInstance(zone, instanceName) {
const projectId = await instancesClient.getProjectId();
const [response] = await instancesClient.delete({
project: projectId,
instance: instanceName,
zone,
});
let operation = response.latestResponse;
const operationsClient = new compute.ZoneOperationsClient();
console.log(`Deleting ${instanceName}`);
// Wait for the delete operation to complete.
while (operation.status !== 'DONE') {
[operation] = await operationsClient.wait({
operation: operation.name,
project: projectId,
zone,
});
}
}
const reservationsClient = new compute.ReservationsClient();
/**
* Get reservations created more than one hour ago.
*/
async function getStaleReservations(prefix) {
const projectId = await reservationsClient.getProjectId();
const result = [];
const currentDate = new Date();
currentDate.setHours(currentDate.getHours() - 1);
const aggListRequest = reservationsClient.aggregatedListAsync({
project: projectId,
});
for await (const [zone, reservationsObject] of aggListRequest) {
const reservations = reservationsObject.reservations;
result.push(
...reservations
.filter(
reservation =>
new Date(reservation.creationTimestamp) < currentDate &&
reservation.name.startsWith(prefix)
)
.map(reservation => {
return {
zone: zone.split('zones/')[1],
reservationName: reservation.name,
timestamp: reservation.creationTimestamp,
};
})
);
}
return result;
}
async function deleteReservation(zone, reservationName) {
const projectId = await reservationsClient.getProjectId();
const [response] = await reservationsClient.delete({
project: projectId,
reservation: reservationName,
zone,
});
let operation = response.latestResponse;
const operationsClient = new compute.ZoneOperationsClient();
console.log(`Deleting ${reservationName}`);
// Wait for the delete operation to complete.
while (operation.status !== 'DONE') {
[operation] = await operationsClient.wait({
operation: operation.name,
project: projectId,
zone,
});
}
}
const storagePoolsClient = new compute.StoragePoolsClient();
/**
* Get storage pools created more than one hour ago.
*/
async function getStaleStoragePools(prefix) {
const projectId = await storagePoolsClient.getProjectId();
const result = [];
const currentDate = new Date();
currentDate.setHours(currentDate.getHours() - 1);
const aggListRequest = storagePoolsClient.aggregatedListAsync({
project: projectId,
});
for await (const [zone, storagePoolsObject] of aggListRequest) {
const storagePools = storagePoolsObject.storagePools;
result.push(
...storagePools
.filter(
storagePool =>
new Date(storagePool.creationTimestamp) < currentDate &&
storagePool.name.startsWith(prefix)
)
.map(storagePool => {
return {
zone: zone.split('zones/')[1],
storagePoolName: storagePool.name,
timestamp: storagePool.creationTimestamp,
};
})
);
}
return result;
}
async function deleteStoragePool(zone, storagePoolName) {
const projectId = await storagePoolsClient.getProjectId();
const [response] = await storagePoolsClient.delete({
project: projectId,
storagePool: storagePoolName,
zone,
});
let operation = response.latestResponse;
const operationsClient = new compute.ZoneOperationsClient();
console.log(`Deleting ${storagePoolName}`);
// Wait for the delete operation to complete.
while (operation.status !== 'DONE') {
[operation] = await operationsClient.wait({
operation: operation.name,
project: projectId,
zone,
});
}
}
const disksClient = new compute.DisksClient();
/**
* Get storage pools created more than one hour ago.
*/
async function getStaleDisks(prefix) {
const projectId = await disksClient.getProjectId();
const result = [];
const currentDate = new Date();
currentDate.setHours(currentDate.getHours() - 1);
const aggListRequest = disksClient.aggregatedListAsync({
project: projectId,
});
for await (const [zone, disksObject] of aggListRequest) {
const disks = disksObject.disks;
result.push(
...disks
.filter(
disk =>
new Date(disk.creationTimestamp) < currentDate &&
disk.name.startsWith(prefix)
)
.map(disk => {
return {
zone: zone.split('zones/')[1],
diskName: disk.name,
timestamp: disk.creationTimestamp,
};
})
);
}
return result;
}
async function deleteDisk(zone, diskName) {
const projectId = await disksClient.getProjectId();
const [response] = await disksClient.delete({
project: projectId,
disk: diskName,
zone,
});
let operation = response.latestResponse;
const operationsClient = new compute.ZoneOperationsClient();
console.log(`Deleting ${diskName}`);
// Wait for the delete operation to complete.
while (operation.status !== 'DONE') {
[operation] = await operationsClient.wait({
operation: operation.name,
project: projectId,
zone,
});
}
}
module.exports = {
generateTestId,
getStaleVMInstances,
deleteInstance,
getStaleReservations,
deleteReservation,
getStaleStoragePools,
deleteStoragePool,
getStaleDisks,
deleteDisk,
};