-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclusters.ts
More file actions
453 lines (390 loc) · 14.2 KB
/
clusters.ts
File metadata and controls
453 lines (390 loc) · 14.2 KB
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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
import { VendorPortalApi } from "./configuration";
export class Cluster {
name: string;
id: string;
status: string;
last_scheduling_status?: string;
}
export class ClusterVersion {
name: string;
version: string;
}
export class Addon {
id: string;
status: string;
object_store?: ObjectStore;
postgres?: Postgres;
}
export class ObjectStore {
bucket_name: string;
bucket_prefix: string;
service_account_name: string;
service_account_name_read_only: string;
service_account_namespace: string;
}
export class Postgres {
version: string;
instance_type: string;
disk_gib: number;
uri: string;
}
export class ClusterPort {
addon_id: string;
upstream_port: number;
exposed_ports: ClusterExposedPort[];
hostname: string;
is_wildcard: boolean;
}
export class ClusterExposedPort {
protocol: string;
exposed_port: number;
}
export class StatusError extends Error {
statusCode: number;
constructor(message: string, statusCode: number) {
super(message);
this.statusCode = statusCode;
}
}
interface tag {
key: string;
value: string;
}
interface nodeGroup {
name: string;
node_count: number;
min_node_count?: number;
max_node_count?: number;
instance_type: string;
disk_gib: number;
}
export async function createCluster(
vendorPortalApi: VendorPortalApi,
clusterName: string,
k8sDistribution: string,
k8sVersion: string,
clusterTTL: string,
diskGib?: number,
nodeCount?: number,
minNodeCount?: number,
maxNodeCount?: number,
instanceType?: string,
nodeGroups?: nodeGroup[],
tags?: tag[],
ipFamily?: string
): Promise<Cluster> {
return await createClusterWithLicense(vendorPortalApi, clusterName, k8sDistribution, k8sVersion, "", clusterTTL, diskGib, nodeCount, minNodeCount, maxNodeCount, instanceType, nodeGroups, tags, ipFamily);
}
export async function createClusterWithLicense(
vendorPortalApi: VendorPortalApi,
clusterName: string,
k8sDistribution: string,
k8sVersion: string,
licenseId: string,
clusterTTL: string,
diskGib?: number,
nodeCount?: number,
minNodeCount?: number,
maxNodeCount?: number,
instanceType?: string,
nodeGroups?: nodeGroup[],
tags?: tag[],
ipFamily?: string
): Promise<Cluster> {
const http = await vendorPortalApi.client();
const reqBody = {
name: clusterName,
kubernetes_distribution: k8sDistribution,
kubernetes_version: k8sVersion,
ttl: clusterTTL
};
if (licenseId) {
reqBody["license_id"] = licenseId;
}
if (diskGib) {
reqBody["disk_gib"] = diskGib;
}
if (instanceType) {
reqBody["instance_type"] = instanceType;
}
if (nodeCount) {
reqBody["node_count"] = nodeCount;
}
if (minNodeCount) {
reqBody["min_node_count"] = minNodeCount;
}
if (maxNodeCount) {
reqBody["max_node_count"] = maxNodeCount;
}
if (nodeGroups) {
reqBody["node_groups"] = nodeGroups;
}
if (tags) {
reqBody["tags"] = tags;
}
if (ipFamily) {
reqBody["ip_family"] = ipFamily;
}
const uri = `${vendorPortalApi.endpoint}/cluster`;
const res = await http.post(uri, JSON.stringify(reqBody));
if (res.message.statusCode != 201) {
let body = "";
try {
body = await res.readBody();
} catch (err) {
// ignore
}
throw new Error(`Failed to queue cluster create: Server responded with ${res.message.statusCode}: ${body}`);
}
const body: any = JSON.parse(await res.readBody());
return {
name: body.cluster.name,
id: body.cluster.id,
status: body.cluster.status
};
}
export async function pollForStatus(vendorPortalApi: VendorPortalApi, clusterId: string, expectedStatus: string, timeout: number = 120, sleeptimeMs: number = 5000): Promise<Cluster> {
// get clusters from the api, look for the status of the id to be ${status}
// if it's not ${status}, sleep for 5 seconds and try again
// if it is ${status}, return the cluster with that status
await new Promise(f => setTimeout(f, sleeptimeMs)); // sleep for 5 seconds before polling as the cluster takes a few seconds to start provisioning
// iterate for timeout/sleeptime times
const iterations = (timeout * 1000) / sleeptimeMs;
for (let i = 0; i < iterations; i++) {
try {
const clusterDetails = await getClusterDetails(vendorPortalApi, clusterId);
if (clusterDetails.status === expectedStatus) {
return clusterDetails;
}
if (clusterDetails.status === "error") {
const schedulingStatus = clusterDetails.last_scheduling_status ? `, last scheduling status: ${clusterDetails.last_scheduling_status}` : "";
throw new Error(`Cluster has entered error state${schedulingStatus}`);
}
console.debug(`Cluster status is ${clusterDetails.status}, sleeping for ${sleeptimeMs / 1000} seconds`);
} catch (err) {
if (err instanceof StatusError) {
if (err.statusCode >= 500) {
// 5xx errors are likely transient, so we should retry
console.debug(`Got HTTP error with status ${err.statusCode}, sleeping for ${sleeptimeMs / 1000} seconds`);
} else {
console.debug(`Got HTTP error with status ${err.statusCode}, exiting`);
throw err;
}
} else {
throw err;
}
}
await new Promise(f => setTimeout(f, sleeptimeMs));
}
throw new Error(`Cluster did not reach state ${expectedStatus} within ${timeout} seconds`);
}
async function getClusterDetails(vendorPortalApi: VendorPortalApi, clusterId: string): Promise<Cluster> {
const http = await vendorPortalApi.client();
const uri = `${vendorPortalApi.endpoint}/cluster/${clusterId}`;
const res = await http.get(uri);
if (res.message.statusCode != 200) {
// discard the response body
await res.readBody();
throw new StatusError(`Failed to get cluster: Server responded with ${res.message.statusCode}`, res.message.statusCode);
}
const body: any = JSON.parse(await res.readBody());
return {
name: body.cluster.name,
id: body.cluster.id,
status: body.cluster.status,
last_scheduling_status: body.cluster.last_scheduling_status
};
}
export async function getKubeconfig(vendorPortalApi: VendorPortalApi, clusterId: string): Promise<string> {
const http = await vendorPortalApi.client();
const uri = `${vendorPortalApi.endpoint}/cluster/${clusterId}/kubeconfig`;
const res = await http.get(uri);
if (res.message.statusCode != 200) {
// discard the response body
await res.readBody();
throw new StatusError(`Failed to get kubeconfig: Server responded with ${res.message.statusCode}`, res.message.statusCode);
}
const body: any = JSON.parse(await res.readBody());
return atob(body.kubeconfig);
}
export async function removeCluster(vendorPortalApi: VendorPortalApi, clusterId: string) {
const http = await vendorPortalApi.client();
const uri = `${vendorPortalApi.endpoint}/cluster/${clusterId}`;
const res = await http.del(uri);
// discard the response body
await res.readBody();
if (res.message.statusCode != 200) {
throw new StatusError(`Failed to remove cluster: Server responded with ${res.message.statusCode}`, res.message.statusCode);
}
}
export async function upgradeCluster(vendorPortalApi: VendorPortalApi, clusterId: string, k8sVersion: string): Promise<Cluster> {
const http = await vendorPortalApi.client();
const reqBody = {
kubernetes_version: k8sVersion
};
const uri = `${vendorPortalApi.endpoint}/cluster/${clusterId}/upgrade`;
const res = await http.post(uri, JSON.stringify(reqBody));
// discard the response body
await res.readBody();
if (res.message.statusCode != 200) {
throw new StatusError(`Failed to upgrade cluster: Server responded with ${res.message.statusCode}`, res.message.statusCode);
}
return getClusterDetails(vendorPortalApi, clusterId);
}
export async function getClusterVersions(vendorPortalApi: VendorPortalApi): Promise<ClusterVersion[]> {
const http = await vendorPortalApi.client();
const uri = `${vendorPortalApi.endpoint}/cluster/versions`;
const res = await http.get(uri);
if (res.message.statusCode != 200) {
// discard the response body
await res.readBody();
throw new StatusError(`Failed to get cluster versions: Server responded with ${res.message.statusCode}`, res.message.statusCode);
}
const body: any = JSON.parse(await res.readBody());
// 2. Convert body into ClusterVersion[]
let clusterVersions = [];
for (const cluster of body["cluster-versions"]) {
for (const version of cluster.versions) {
clusterVersions.push({
name: cluster.short_name,
version: version
});
}
}
return clusterVersions;
}
export async function createAddonObjectStore(vendorPortalApi: VendorPortalApi, clusterId: string, bucketName: string): Promise<Addon> {
const http = await vendorPortalApi.client();
const uri = `${vendorPortalApi.endpoint}/cluster/${clusterId}/addons/objectstore`;
const reqBody = {
bucket: bucketName
};
const res = await http.post(uri, JSON.stringify(reqBody));
if (res.message.statusCode != 201) {
let body = "";
try {
body = await res.readBody();
} catch (err) {
// ignore
}
throw new Error(`Failed to queue add-on create: Server responded with ${res.message.statusCode}: ${body}`);
}
const body: any = JSON.parse(await res.readBody());
var addon: Addon = { id: body.addon.id, status: body.addon.status };
if (body.addon.object_store) {
addon.object_store = {
bucket_name: body.addon.object_store.bucket_name,
bucket_prefix: body.addon.object_store.bucket_prefix,
service_account_name: body.addon.object_store.service_account_name,
service_account_name_read_only: body.addon.object_store.service_account_name_read_only,
service_account_namespace: body.addon.object_store.service_account_namespace
};
}
return addon;
}
export async function pollForAddonStatus(vendorPortalApi: VendorPortalApi, clusterId: string, addonId: string, expectedStatus: string, timeout: number = 120, sleeptimeMs: number = 5000): Promise<Addon> {
// get add-ons from the api, look for the status of the id to be ${status}
// if it's not ${status}, sleep for 5 seconds and try again
// if it is ${status}, return the add-on with that status
await new Promise(f => setTimeout(f, sleeptimeMs)); // sleep for sleeptimeMs seconds before polling as the add-on takes a few seconds to start provisioning
// iterate for timeout/sleeptime times
const iterations = (timeout * 1000) / sleeptimeMs;
for (let i = 0; i < iterations; i++) {
try {
const addonDetails = await getAddonDetails(vendorPortalApi, clusterId, addonId);
if (addonDetails.status === expectedStatus) {
return addonDetails;
}
// Once state is "error", it will never change. So we can shortcut polling.
if (addonDetails.status === "error") {
throw new Error(`Add-on has entered error state.`);
}
console.debug(`Cluster Add-on status is ${addonDetails.status}, sleeping for ${sleeptimeMs / 1000} seconds`);
} catch (err) {
if (err instanceof StatusError) {
if (err.statusCode >= 500) {
// 5xx errors are likely transient, so we should retry
console.debug(`Got HTTP error with status ${err.statusCode}, sleeping for ${sleeptimeMs / 1000} seconds`);
} else {
console.debug(`Got HTTP error with status ${err.statusCode}, exiting`);
throw err;
}
} else {
throw err;
}
}
await new Promise(f => setTimeout(f, sleeptimeMs));
}
throw new Error(`Add-on did not reach state ${expectedStatus} within ${timeout} seconds`);
}
async function getAddonDetails(vendorPortalApi: VendorPortalApi, clusterId: string, addonId: string): Promise<Addon> {
const http = await vendorPortalApi.client();
const uri = `${vendorPortalApi.endpoint}/cluster/${clusterId}/addons`;
const res = await http.get(uri);
if (res.message.statusCode != 200) {
// discard the response body
await res.readBody();
throw new StatusError(`Failed to get add-on: Server responded with ${res.message.statusCode}`, res.message.statusCode);
}
const body: any = JSON.parse(await res.readBody());
for (const addon of body.addons) {
if (addon.id === addonId) {
var addonObj: Addon = { id: addon.id, status: addon.status };
if (addon.object_store) {
addonObj.object_store = {
bucket_name: addon.object_store.bucket_name,
bucket_prefix: addon.object_store.bucket_prefix,
service_account_name: addon.object_store.service_account_name,
service_account_name_read_only: addon.object_store.service_account_name_read_only,
service_account_namespace: addon.object_store.service_account_namespace
};
}
if (addon.postgres) {
addonObj.postgres = {
uri: addon.postgres.uri,
version: addon.postgres.version,
instance_type: addon.postgres.instance_type,
disk_gib: addon.postgres.disk_gib
};
}
return addonObj;
}
}
throw new Error(`Add-on with id ${addonId} not found`);
}
export async function exposeClusterPort(vendorPortalApi: VendorPortalApi, clusterId: string, port: number, protocols: string[], isWildcard?: boolean): Promise<ClusterPort> {
const http = await vendorPortalApi.client();
const uri = `${vendorPortalApi.endpoint}/cluster/${clusterId}/port`;
const reqBody = {
port: port,
protocols: protocols,
is_wildcard: isWildcard
};
const res = await http.post(uri, JSON.stringify(reqBody));
if (res.message.statusCode != 201) {
let body = "";
try {
body = await res.readBody();
} catch (err) {
// ignore
}
throw new Error(`Failed to expose cluster port: Server responded with ${res.message.statusCode}: ${body}`);
}
const body: any = JSON.parse(await res.readBody());
var exposedPorts: ClusterExposedPort[] = [];
for (const exposed_port of body.port.exposed_ports) {
const exposedPort: ClusterExposedPort = {
protocol: exposed_port.protocol,
exposed_port: exposed_port.exposed_port
};
exposedPorts.push(exposedPort);
}
var portObj: ClusterPort = {
addon_id: body.port.addon_id,
upstream_port: body.port.upstream_port,
hostname: body.port.hostname,
exposed_ports: exposedPorts,
is_wildcard: body.port.is_wildcard
};
return portObj;
}