-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinstall.js
285 lines (278 loc) · 11.9 KB
/
install.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
276
277
278
279
280
281
282
283
284
285
const create = require('./create');
const {strOptions} = require('yaml/types');
const yaml = require('yaml');
const editConfig = require('ut-config').edit;
const merge = require('ut-function.merge');
const childProcess = require('child_process');
const sortKeys = require('sort-keys');
module.exports = async function(serviceConfig, envConfig, assert, vfs) {
const {broker, serviceBus, service, mergedConfig, log, logFactory} = await create(envConfig, vfs);
if (service) {
if (!mergedConfig.run || !mergedConfig.run.layers) {
throw new Error('Missing run.layers in the configuration');
}
if (!mergedConfig.run || !mergedConfig.run.edit) {
throw new Error('Missing run.edit in the configuration');
}
Object.keys(mergedConfig.run.layers).forEach(name => { // enable all layers in run.layers
const [utModule, layer] = name.split('.', 2);
if (!mergedConfig[utModule]) mergedConfig[utModule] = {[layer]: true};
if (!mergedConfig[utModule][layer]) mergedConfig[utModule][layer] = true;
});
const ports = await service.create(serviceConfig, mergedConfig, assert);
const finishForm = await editConfig({log, edit: {server: mergedConfig.run.edit.server}});
const editForm = await editConfig({log, edit: {server: mergedConfig.run.edit.server, id: mergedConfig.run.edit.id}});
let secret;
const schema = service.schema({
schema: {
properties: {
k8s: {
type: 'object',
properties: {
repository: {
type: 'string',
default: (mergedConfig.k8s && mergedConfig.k8s.minikube) ? '' : 'nexus-dev.softwaregroup.com:5001'
},
username: {
type: 'string'
},
password: {
type: 'string'
},
image: {
type: 'string',
default: 'ut/impl-' + mergedConfig.implementation + ':' +
((mergedConfig.k8s && mergedConfig.k8s.minikube) ? 'minikube' : mergedConfig.version)
},
pull: {
type: 'string',
title: 'Image pull policy',
enum: ['Always', 'IfNotPresent', 'Never']
},
namespace: {
type: 'string',
default: mergedConfig.implementation + '-' + mergedConfig.params.env
},
node: {
type: 'string',
title: 'Install only on node'
},
architecture: {
type: 'string',
title: 'Install only on architecture'
},
istio: {
type: 'boolean',
title: 'Enable Istio',
default: true
},
fluentbit: {
type: 'object',
title: 'Fluent Bit configuration',
properties: {
host: {
type: 'string',
title: 'Elasticsearch host'
},
port: {
type: ['integer', 'null'],
title: 'Elasticsearch port'
}
}
},
ingress: {
type: 'object',
title: 'Ingress configuration',
properties: {
rpc: {
type: 'boolean',
title: 'Expose internal microservices API'
},
apiDocs: {
type: 'boolean',
title: 'Expose internal microservices API docs'
},
tls: {
type: 'object',
title: 'TLS configuration',
properties: {
manager: {
type: 'string',
default: 'cert-manager.io/v1',
title: 'Certificate manager'
},
issuer: {
type: 'string',
title: 'Certificate issuer'
}
}
}
}
}
}
}
}
},
uiSchema: {
k8s: {
password: {
'ui:widget': 'password',
'ui:emptyValue': ''
},
repository: {
'ui:emptyValue': ''
},
username: {
'ui:emptyValue': ''
},
image: {
'ui:emptyValue': ''
},
namespace: {
'ui:emptyValue': ''
},
node: {
'ui:emptyValue': ''
},
architecture: {
'ui:emptyValue': ''
},
pull: {
'ui:emptyValue': ''
}
}
}
});
editConfig({
log,
edit: {
...mergedConfig.run.edit,
...schema,
id: editForm.id,
submit: async({payload}) => {
merge(mergedConfig, {k8s: payload.k8s});
delete payload.k8s;
secret = payload;
return {
payload: {
redirect: finishForm.url.pathname
}
};
}
},
filename: mergedConfig.config
});
if (envConfig.startBrowser) {
childProcess.exec((process.platform === 'win32' ? 'start' : 'xdg-open') + ' ' + editForm.url.href, err => {
if (err && log.error) log.error(err);
});
} else {
log && log.warn && log.warn('Edit configuration at ' + editForm.url.href);
}
const install = await editConfig({
log,
edit: {
server: mergedConfig.run.edit.server,
handler: async({type}) => {
switch (type) {
case 'k8s': {
let result = service.install({layers: mergedConfig.run.layers, config: mergedConfig, secret});
const lineWidth = strOptions.fold.lineWidth; // yet another stupid singleton
try {
strOptions.fold.lineWidth = 1e6;
result = [
result.namespace,
...Object.values(result.secrets),
...Object.values(result.deployments),
...Object.values(result.services),
...Object.values(result.ingresses)
].filter(x => x).map(item => yaml.stringify(sortKeys(item, {deep: true})));
} finally {
strOptions.fold.lineWidth = lineWidth;
}
return {
payload: result.join('---\n'),
headers: {
'Content-Type': 'application/x-yaml',
'Content-Disposition': 'attachment; filename = "k8s.yaml"'
}
};
}
default:
return {
payload: yaml.stringify(secret),
headers: {
'Content-Type': 'text/plain',
'Content-Disposition': 'inline'
}
};
}
}
}
});
await editConfig({
log,
edit: {
id: finishForm.id,
server: mergedConfig.run.edit.server,
schema: {
$schema: 'http://json-schema.org/draft-07/schema#',
type: 'object',
title: 'Install options',
properties: {
kubectl: {
type: 'string',
title: 'To install with kubectl directly, run this in a shell',
readOnly: true
},
k8s: {
type: 'string',
title: 'Download k8s YAML file',
readOnly: true
},
rc: {
type: 'string',
title: `Download .${mergedConfig.params.appname}rc file`,
readOnly: true
}
}
},
buttons: [{
title: 'Done'
}],
uiSchema: {
kubectl: {
'ui:widget': 'textarea',
'ui:autofocus': true
}
},
submit: async({payload}) => {
return {
payload: {
state: {
schema: {
title: 'Configuration completed',
description: 'You can now close this page',
type: 'object',
properties: {}
},
buttons: []
}
}
};
}
},
formData: {
kubectl: 'kubectl apply -f ' + install.href + '?type=k8s',
k8s: install.href + '?type=k8s',
rc: install.href
}
});
for (const port of ports) {
await port.destroy();
}
}
serviceBus && await serviceBus.destroy();
broker && await broker.destroy();
logFactory && await logFactory.destroy();
};