-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserverless.js
144 lines (122 loc) · 3.11 KB
/
serverless.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
const kubernetes = require('@kubernetes/client-node')
const { Component } = require('@serverless/core')
const defaults = {
namespace: 'default'
}
class KubernetesPod extends Component {
async deploy(inputs = {}) {
const config = {
...defaults,
...inputs
}
const k8sCore = this.getKubernetesClient(kubernetes.CoreV1Api)
let podExists = true
try {
await this.readPod(k8sCore, config)
} catch (error) {
podExists = error.response.body.code === 404 ? false : true
}
if (!podExists) {
await this.createPod(k8sCore, config)
}
this.state = config
return this.state
}
async read(inputs = {}) {
const config = {
...defaults,
...inputs
}
const k8sCore = this.getKubernetesClient(kubernetes.CoreV1Api)
const result = await this.readPod(k8sCore, config)
return {
metadata: {
uid: result.body.metadata.uid,
name: result.body.metadata.name,
namespace: result.body.metadata.namespace
},
status: {
phase: result.body.status.phase,
podIP: result.body.status.podIP,
hostIP: result.body.status.hostIP,
startTime: result.body.status.startTime
}
}
}
async exec(inputs = {}) {
const config = {
...defaults,
...inputs
}
const k8sExec = this.getKubernetesClient(kubernetes.Exec)
return this.execPod(k8sExec, config)
}
async remove(inputs = {}) {
const config = {
...defaults,
...inputs,
...this.state
}
const k8sCore = this.getKubernetesClient(kubernetes.CoreV1Api)
await this.deletePod(k8sCore, config)
this.state = {}
return {}
}
// "private" methods
getKubernetesClient(type) {
const { endpoint, port } = this.credentials.kubernetes
const token = this.credentials.kubernetes.serviceAccountToken
const skipTLSVerify = this.credentials.kubernetes.skipTlsVerify == 'true'
const kc = new kubernetes.KubeConfig()
kc.loadFromOptions({
clusters: [
{
name: 'cluster',
skipTLSVerify,
server: `${endpoint}:${port}`
}
],
users: [{ name: 'user', token }],
contexts: [
{
name: 'context',
user: 'user',
cluster: 'cluster'
}
],
currentContext: 'context'
})
if (type.toString() === kubernetes.Exec.toString()) {
return new type(kc)
}
return kc.makeApiClient(type)
}
async createPod(k8s, { name, namespace, spec }) {
return k8s.createNamespacedPod(namespace, {
metadata: { name },
spec
})
}
async readPod(k8s, { name, namespace }) {
return k8s.readNamespacedPod(name, namespace)
}
async execPod(
k8s,
{
namespace,
name,
container,
command,
stdin = process.stdin,
stdout = process.stdout,
stderr = process.stderr,
tty = false
}
) {
return k8s.exec(namespace, name, container, command, stdout, stderr, stdin, tty)
}
async deletePod(k8s, { name, namespace }) {
return k8s.deleteNamespacedPod(name, namespace)
}
}
module.exports = KubernetesPod