-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathflags.ts
2576 lines (2402 loc) · 75 KB
/
flags.ts
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// SPDX-License-Identifier: Apache-2.0
import * as constants from '../core/constants.js';
import * as version from '../../version.js';
import {type CommandFlag} from '../types/flag-types.js';
import fs from 'node:fs';
import {IllegalArgumentError} from '../core/errors/illegal-argument-error.js';
import {SoloError} from '../core/errors/solo-error.js';
import {ListrInquirerPromptAdapter} from '@listr2/prompt-adapter-inquirer';
import {
select as selectPrompt,
input as inputPrompt,
number as numberPrompt,
confirm as confirmPrompt,
} from '@inquirer/prompts';
import validator from 'validator';
import {type AnyListrContext, type AnyObject, type AnyYargs} from '../types/aliases.js';
import {type ClusterReference} from '../core/config/remote/types.js';
import {type Optional, type SoloListrTaskWrapper} from '../types/index.js';
import chalk from 'chalk';
import {PathEx} from '../business/utils/path-ex.js';
export class Flags {
public static KEY_COMMON = '_COMMON_';
private static async prompt(
type: 'toggle' | 'input' | 'number',
task: SoloListrTaskWrapper<AnyListrContext>,
// eslint-disable-next-line @typescript-eslint/no-explicit-any
input: any,
// eslint-disable-next-line @typescript-eslint/no-explicit-any
defaultValue: Optional<any>,
promptMessage: string,
emptyCheckMessage: string | null,
flagName: string,
// eslint-disable-next-line @typescript-eslint/no-explicit-any
): Promise<any> {
try {
let needsPrompt = type === 'toggle' ? input === undefined || typeof input !== 'boolean' : !input;
needsPrompt = type === 'number' ? typeof input !== 'number' : needsPrompt;
if (needsPrompt) {
if (!process.stdout.isTTY || !process.stdin.isTTY) {
// this is to help find issues with prompts running in non-interactive mode, user should supply quite mode,
// or provide all flags required for command
throw new SoloError('Cannot prompt for input in non-interactive mode');
}
const promptOptions = {default: defaultValue, message: promptMessage};
switch (type) {
case 'input': {
input = await task.prompt(ListrInquirerPromptAdapter).run(inputPrompt, promptOptions);
break;
}
case 'toggle': {
input = await task.prompt(ListrInquirerPromptAdapter).run(confirmPrompt, promptOptions);
break;
}
case 'number': {
input = await task.prompt(ListrInquirerPromptAdapter).run(numberPrompt, promptOptions);
break;
}
}
}
if (emptyCheckMessage && !input) {
throw new SoloError(emptyCheckMessage);
}
return input;
} catch (error) {
throw new SoloError(`input failed: ${flagName}: ${error.message}`, error);
}
}
private static async promptText(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
defaultValue: Optional<string>,
promptMessage: string,
emptyCheckMessage: string | null,
flagName: string,
): Promise<string> {
return await Flags.prompt('input', task, input, defaultValue, promptMessage, emptyCheckMessage, flagName);
}
private static async promptToggle(
task: SoloListrTaskWrapper<AnyListrContext>,
input: boolean,
defaultValue: Optional<boolean>,
promptMessage: string,
emptyCheckMessage: string | null,
flagName: string,
): Promise<boolean> {
return await Flags.prompt('toggle', task, input, defaultValue, promptMessage, emptyCheckMessage, flagName);
}
/**
* Disable prompts for the given set of flags
* @param flags list of flags to disable prompts for
*/
public static disablePrompts(flags: CommandFlag[]): void {
Flags.resetDisabledPrompts();
for (const flag of flags) {
if (flag.definition) {
flag.definition.disablePrompt = true;
}
}
}
/**
* Set flag from the flag option
* @param y instance of yargs
* @param commandFlags a set of command flags
*
*/
public static setRequiredCommandFlags(y: AnyYargs, ...commandFlags: CommandFlag[]) {
for (const flag of commandFlags) {
y.option(flag.name, {...flag.definition, demandOption: true});
}
}
/**
* Set flag from the flag option
* @param y instance of yargs
* @param commandFlags a set of command flags
*
*/
public static setOptionalCommandFlags(y: AnyYargs, ...commandFlags: CommandFlag[]) {
for (const flag of commandFlags) {
let defaultValue = flag.definition.defaultValue !== '' ? flag.definition.defaultValue : undefined;
defaultValue = defaultValue && flag.definition.dataMask ? flag.definition.dataMask : defaultValue;
y.option(flag.name, {
...flag.definition,
default: defaultValue,
});
}
}
public static readonly devMode: CommandFlag = {
constName: 'devMode',
name: 'dev',
definition: {
describe: 'Enable developer mode',
defaultValue: false,
type: 'boolean',
},
prompt: undefined,
};
public static readonly forcePortForward: CommandFlag = {
constName: 'forcePortForward',
name: 'force-port-forward',
definition: {
describe: 'Force port forward to access the network services',
defaultValue: true, // always use local port-forwarding by default
type: 'boolean',
},
prompt: undefined,
};
// list of common flags across commands. command specific flags are defined in the command's module.
public static readonly clusterRef: CommandFlag = {
constName: 'clusterRef',
name: 'cluster-ref',
definition: {
describe:
'The cluster reference that will be used for referencing the Kubernetes cluster and stored in the local and ' +
'remote configuration for the deployment. For commands that take multiple clusters they can be separated by commas.',
alias: 'c',
type: 'string',
},
prompt: async function promptClusterReference(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
return await Flags.promptText(
task,
input,
Flags.clusterRef.definition.defaultValue as string,
'Enter cluster reference: ',
'cluster reference cannot be empty',
Flags.clusterRef.name,
);
},
};
public static readonly clusterSetupNamespace: CommandFlag = {
constName: 'clusterSetupNamespace',
name: 'cluster-setup-namespace',
definition: {
describe: 'Cluster Setup Namespace',
defaultValue: constants.SOLO_SETUP_NAMESPACE.name,
alias: 's',
type: 'string',
},
prompt: async function promptClusterSetupNamespace(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
return await Flags.promptText(
task,
input,
'solo-cluster',
'Enter cluster setup namespace name: ',
'cluster setup namespace cannot be empty',
Flags.clusterSetupNamespace.name,
);
},
};
public static readonly namespace: CommandFlag = {
constName: 'namespace',
name: 'namespace',
definition: {
describe: 'Namespace',
alias: 'n',
type: 'string',
},
prompt: async function promptNamespace(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
return await Flags.promptText(
task,
input,
'solo',
'Enter namespace name: ',
'namespace cannot be empty',
Flags.namespace.name,
);
},
};
public static readonly mirrorNamespace: CommandFlag = {
constName: 'mirrorNamespace',
name: 'mirror-namespace',
definition: {
describe: 'Namespace to use for the Mirror Node deployment, a new one will be created if it does not exist',
type: 'string',
},
prompt: async function promptNamespace(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
return await Flags.promptText(
task,
input,
'solo',
'Enter mirror node namespace name: ',
'namespace cannot be empty',
Flags.mirrorNamespace.name,
);
},
};
/**
* Parse the values files input string that includes the cluster reference and the values file path
* <p>It supports input as below:
* <p>--values-file aws-cluster=aws/solo-values.yaml,aws-cluster=aws/solo-values2.yaml,gcp-cluster=gcp/solo-values.yaml,gcp-cluster=gcp/solo-values2.yaml
* @param input
*/
public static parseValuesFilesInput(input: string): Record<ClusterReference, Array<string>> {
const valuesFiles: Record<ClusterReference, Array<string>> = {};
if (input) {
const inputItems = input.split(',');
for (const v of inputItems) {
const parts = v.split('=');
let clusterReference: string;
let valuesFile: string;
if (parts.length !== 2) {
valuesFile = PathEx.resolve(v);
clusterReference = Flags.KEY_COMMON;
} else {
clusterReference = parts[0];
valuesFile = PathEx.resolve(parts[1]);
}
if (!valuesFiles[clusterReference]) {
valuesFiles[clusterReference] = [];
}
valuesFiles[clusterReference].push(valuesFile);
}
}
return valuesFiles;
}
public static readonly valuesFile: CommandFlag = {
constName: 'valuesFile',
name: 'values-file',
definition: {
describe: 'Comma separated chart values file',
defaultValue: '',
alias: 'f',
type: 'string',
},
prompt: async function promptValuesFile(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
return input; // no prompt is needed for values file
},
};
public static readonly networkDeploymentValuesFile: CommandFlag = {
constName: 'valuesFile',
name: 'values-file',
definition: {
describe:
'Comma separated chart values file paths for each cluster (e.g. values.yaml,cluster-1=./a/b/values1.yaml,cluster-2=./a/b/values2.yaml)',
defaultValue: '',
alias: 'f',
type: 'string',
},
prompt: async function promptValuesFile(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
if (input) {
Flags.parseValuesFilesInput(input); // validate input as early as possible by parsing it
}
return input; // no prompt is needed for values file
},
};
public static readonly profileFile: CommandFlag = {
constName: 'profileFile',
name: 'profile-file',
definition: {
describe: 'Resource profile definition (e.g. custom-spec.yaml)',
defaultValue: constants.DEFAULT_PROFILE_FILE,
type: 'string',
},
prompt: async function promptProfileFile(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
if (input && !fs.existsSync(input)) {
input = await task.prompt(ListrInquirerPromptAdapter).run(inputPrompt, {
default: Flags.valuesFile.definition.defaultValue as string,
message: 'Enter path to custom resource profile definition file: ',
});
}
if (input && !fs.existsSync(input)) {
throw new IllegalArgumentError(`Invalid profile definition file: ${input}}`, input);
}
return input;
},
};
public static readonly profileName: CommandFlag = {
constName: 'profileName',
name: 'profile',
definition: {
describe: `Resource profile (${constants.ALL_PROFILES.join(' | ')})`,
defaultValue: constants.PROFILE_LOCAL,
type: 'string',
},
prompt: async function promptProfile(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
choices: string[] = constants.ALL_PROFILES,
): Promise<string> {
try {
const initial = choices.indexOf(input);
if (initial === -1) {
const input = (await task.prompt(ListrInquirerPromptAdapter).run(selectPrompt, {
message: 'Select profile for solo network deployment',
choices: structuredClone(choices).map(profile => ({name: profile, value: profile})),
})) as string;
if (!input) {
throw new SoloError('key-format cannot be empty');
}
return input;
}
return input;
} catch (error) {
throw new SoloError(`input failed: ${Flags.profileName.name}`, error);
}
},
};
public static readonly deployPrometheusStack: CommandFlag = {
constName: 'deployPrometheusStack',
name: 'prometheus-stack',
definition: {
describe: 'Deploy prometheus stack',
defaultValue: false,
type: 'boolean',
},
prompt: async function promptDeployPrometheusStack(
task: SoloListrTaskWrapper<AnyListrContext>,
input: boolean,
): Promise<boolean> {
return await Flags.promptToggle(
task,
input,
Flags.deployPrometheusStack.definition.defaultValue as boolean,
'Would you like to deploy prometheus stack? ',
null,
Flags.deployPrometheusStack.name,
);
},
};
public static readonly enablePrometheusSvcMonitor: CommandFlag = {
constName: 'enablePrometheusSvcMonitor',
name: 'prometheus-svc-monitor',
definition: {
describe: 'Enable prometheus service monitor for the network nodes',
defaultValue: false,
type: 'boolean',
},
prompt: async function promptEnablePrometheusSvcMonitor(
task: SoloListrTaskWrapper<AnyListrContext>,
input: boolean,
): Promise<boolean> {
return await Flags.promptToggle(
task,
input,
Flags.enablePrometheusSvcMonitor.definition.defaultValue as boolean,
'Would you like to enable the Prometheus service monitor for the network nodes? ',
null,
Flags.enablePrometheusSvcMonitor.name,
);
},
};
public static readonly deployMinio: CommandFlag = {
constName: 'deployMinio',
name: 'minio',
definition: {
describe: 'Deploy minio operator',
defaultValue: true,
type: 'boolean',
},
prompt: async function promptDeployMinio(
task: SoloListrTaskWrapper<AnyListrContext>,
input: boolean,
): Promise<boolean> {
return await Flags.promptToggle(
task,
input,
Flags.deployMinio.definition.defaultValue as boolean,
'Would you like to deploy MinIO? ',
null,
Flags.deployMinio.name,
);
},
};
public static readonly deployCertManager: CommandFlag = {
constName: 'deployCertManager',
name: 'cert-manager',
definition: {
describe: 'Deploy cert manager, also deploys acme-cluster-issuer',
defaultValue: false,
type: 'boolean',
},
prompt: async function promptDeployCertManager(
task: SoloListrTaskWrapper<AnyListrContext>,
input: boolean,
): Promise<boolean> {
return await Flags.promptToggle(
task,
input,
Flags.deployCertManager.definition.defaultValue as boolean,
'Would you like to deploy Cert Manager? ',
null,
Flags.deployCertManager.name,
);
},
};
/*
Deploy cert manager CRDs separately from cert manager itself. Cert manager
CRDs are required for cert manager to deploy successfully.
*/
public static readonly deployCertManagerCrds: CommandFlag = {
constName: 'deployCertManagerCrds',
name: 'cert-manager-crds',
definition: {
describe: 'Deploy cert manager CRDs',
defaultValue: false,
type: 'boolean',
},
prompt: async function promptDeployCertManagerCrds(
task: SoloListrTaskWrapper<AnyListrContext>,
input: boolean,
): Promise<boolean> {
return await Flags.promptToggle(
task,
input,
Flags.deployCertManagerCrds.definition.defaultValue as boolean,
'Would you like to deploy Cert Manager CRDs? ',
null,
Flags.deployCertManagerCrds.name,
);
},
};
public static readonly deployJsonRpcRelay: CommandFlag = {
constName: 'deployJsonRpcRelay',
name: 'json-rpc-relay',
definition: {
describe: 'Deploy JSON RPC Relay',
defaultValue: false,
alias: 'j',
type: 'boolean',
},
prompt: undefined,
};
public static readonly stateFile: CommandFlag = {
constName: 'stateFile',
name: 'state-file',
definition: {
describe: 'A zipped state file to be used for the network',
defaultValue: '',
type: 'string',
},
prompt: undefined,
};
public static readonly upgradeZipFile: CommandFlag = {
constName: 'upgradeZipFile',
name: 'upgrade-zip-file',
definition: {
describe: 'A zipped file used for network upgrade',
defaultValue: '',
type: 'string',
},
prompt: undefined,
};
public static readonly releaseTag: CommandFlag = {
constName: 'releaseTag',
name: 'release-tag',
definition: {
describe: `Release tag to be used (e.g. ${version.HEDERA_PLATFORM_VERSION})`,
alias: 't',
defaultValue: version.HEDERA_PLATFORM_VERSION,
type: 'string',
},
prompt: async function promptReleaseTag(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
return await Flags.promptText(
task,
input,
version.HEDERA_PLATFORM_VERSION,
'Enter release version: ',
undefined,
Flags.releaseTag.name,
);
},
};
public static readonly relayReleaseTag: CommandFlag = {
constName: 'relayReleaseTag',
name: 'relay-release',
definition: {
describe: 'Relay release tag to be used (e.g. v0.48.0)',
defaultValue: version.HEDERA_JSON_RPC_RELAY_VERSION,
type: 'string',
},
prompt: async function promptRelayReleaseTag(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
return await Flags.promptText(
task,
input,
Flags.relayReleaseTag.definition.defaultValue as string,
'Enter relay release version: ',
'relay-release-tag cannot be empty',
Flags.relayReleaseTag.name,
);
},
};
public static readonly cacheDir: CommandFlag = {
constName: 'cacheDir',
name: 'cache-dir',
definition: {
describe: 'Local cache directory',
defaultValue: constants.SOLO_CACHE_DIR,
type: 'string',
},
prompt: async function promptCacheDirectory(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
return await Flags.promptText(
task,
input,
constants.SOLO_CACHE_DIR,
'Enter local cache directory path: ',
null,
Flags.cacheDir.name,
);
},
};
public static readonly nodeAliasesUnparsed: CommandFlag = {
constName: 'nodeAliasesUnparsed',
name: 'node-aliases',
definition: {
describe: 'Comma separated node aliases (empty means all nodes)',
alias: 'i',
type: 'string',
},
prompt: async function promptNodeAliases(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
return await Flags.prompt(
'input',
task,
input,
'node1,node2,node3',
'Enter list of node IDs (comma separated list): ',
null,
Flags.nodeAliasesUnparsed.name,
);
},
};
public static readonly force: CommandFlag = {
constName: 'force',
name: 'force',
definition: {
describe: 'Force actions even if those can be skipped',
defaultValue: false,
alias: 'f',
type: 'boolean',
},
prompt: async function promptForce(task: SoloListrTaskWrapper<AnyListrContext>, input: boolean): Promise<boolean> {
return await Flags.promptToggle(
task,
input,
Flags.force.definition.defaultValue as boolean,
'Would you like to force changes? ',
null,
Flags.force.name,
);
},
};
public static readonly chartDirectory: CommandFlag = {
constName: 'chartDirectory',
name: 'chart-dir',
definition: {
describe: 'Local chart directory path (e.g. ~/solo-charts/charts',
defaultValue: '',
type: 'string',
},
prompt: async function promptChartDirectory(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
if (input === 'false') {
return '';
}
try {
if (input && !fs.existsSync(input)) {
input = await task.prompt(ListrInquirerPromptAdapter).run(inputPrompt, {
default: Flags.chartDirectory.definition.defaultValue as string,
message: 'Enter local charts directory path: ',
});
if (!fs.existsSync(input)) {
throw new IllegalArgumentError('Invalid chart directory', input);
}
}
return input;
} catch (error) {
throw new SoloError(`input failed: ${Flags.chartDirectory.name}`, error);
}
},
};
public static readonly replicaCount: CommandFlag = {
constName: 'replicaCount',
name: 'replica-count',
definition: {
describe: 'Replica count',
defaultValue: 1,
alias: '',
type: 'number',
},
prompt: async function promptReplicaCount(
task: SoloListrTaskWrapper<AnyListrContext>,
input: number,
): Promise<number> {
return await Flags.prompt(
'number',
task,
input,
Flags.replicaCount.definition.defaultValue,
'How many replica do you want? ',
null,
Flags.replicaCount.name,
);
},
};
public static readonly chainId: CommandFlag = {
constName: 'chainId',
name: 'ledger-id',
definition: {
describe: 'Ledger ID (a.k.a. Chain ID)',
defaultValue: constants.HEDERA_CHAIN_ID, // Ref: https://github.com/hashgraph/hedera-json-rpc-relay#configuration
alias: 'l',
type: 'string',
},
prompt: async function promptChainId(task: SoloListrTaskWrapper<AnyListrContext>, input: string): Promise<string> {
return await Flags.promptText(
task,
input,
Flags.chainId.definition.defaultValue as string,
'Enter chain ID: ',
null,
Flags.chainId.name,
);
},
};
// Ref: https://github.com/hashgraph/hedera-json-rpc-relay/blob/main/docs/configuration.md
public static readonly operatorId: CommandFlag = {
constName: 'operatorId',
name: 'operator-id',
definition: {
describe: 'Operator ID',
defaultValue: undefined,
type: 'string',
},
prompt: async function promptOperatorId(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
return await Flags.promptText(
task,
input,
Flags.operatorId.definition.defaultValue as string,
'Enter operator ID: ',
null,
Flags.operatorId.name,
);
},
};
// Ref: https://github.com/hashgraph/hedera-json-rpc-relay/blob/main/docs/configuration.md
public static readonly operatorKey: CommandFlag = {
constName: 'operatorKey',
name: 'operator-key',
definition: {
describe: 'Operator Key',
defaultValue: undefined,
type: 'string',
dataMask: constants.STANDARD_DATAMASK,
},
prompt: async function promptOperatorKey(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
return await Flags.promptText(
task,
input,
Flags.operatorKey.definition.defaultValue as string,
'Enter operator private key: ',
null,
Flags.operatorKey.name,
);
},
};
public static readonly privateKey: CommandFlag = {
constName: 'privateKey',
name: 'private-key',
definition: {
describe: 'Show private key information',
defaultValue: false,
type: 'boolean',
dataMask: constants.STANDARD_DATAMASK,
},
prompt: async function promptPrivateKey(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
return await Flags.promptText(
task,
input,
Flags.ed25519PrivateKey.definition.defaultValue as string,
'Enter the private key: ',
null,
Flags.ed25519PrivateKey.name,
);
},
};
public static readonly generateGossipKeys: CommandFlag = {
constName: 'generateGossipKeys',
name: 'gossip-keys',
definition: {
describe: 'Generate gossip keys for nodes',
defaultValue: false,
type: 'boolean',
},
prompt: async function promptGenerateGossipKeys(
task: SoloListrTaskWrapper<AnyListrContext>,
input: boolean,
): Promise<boolean> {
return await Flags.promptToggle(
task,
input,
Flags.generateGossipKeys.definition.defaultValue as boolean,
`Would you like to generate Gossip keys? ${typeof input} ${input} `,
null,
Flags.generateGossipKeys.name,
);
},
};
public static readonly generateTlsKeys: CommandFlag = {
constName: 'generateTlsKeys',
name: 'tls-keys',
definition: {
describe: 'Generate gRPC TLS keys for nodes',
defaultValue: false,
type: 'boolean',
},
prompt: async function promptGenerateTLSKeys(
task: SoloListrTaskWrapper<AnyListrContext>,
input: boolean,
): Promise<boolean> {
return await Flags.promptToggle(
task,
input,
Flags.generateTlsKeys.definition.defaultValue as boolean,
'Would you like to generate TLS keys? ',
null,
Flags.generateTlsKeys.name,
);
},
};
public static readonly enableTimeout: CommandFlag = {
constName: 'enableTimeout',
name: 'enable-timeout',
definition: {
describe: 'enable time out for running a command',
defaultValue: false,
type: 'boolean',
},
prompt: undefined,
};
public static readonly tlsClusterIssuerType: CommandFlag = {
constName: 'tlsClusterIssuerType',
name: 'tls-cluster-issuer-type',
definition: {
describe:
'The TLS cluster issuer type to use for hedera explorer, defaults to "self-signed", the available options are: "acme-staging", "acme-prod", or "self-signed"',
defaultValue: 'self-signed',
type: 'string',
},
prompt: async function promptTlsClusterIssuerType(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string | void> {
if (input) {
return;
}
try {
input = (await task.prompt(ListrInquirerPromptAdapter).run(selectPrompt, {
default: Flags.tlsClusterIssuerType.definition.defaultValue as string,
message:
'Enter TLS cluster issuer type, available options are: "acme-staging", "acme-prod", or "self-signed":',
choices: ['acme-staging', 'acme-prod', 'self-signed'],
})) as string;
return input;
} catch (error) {
throw new SoloError(`input failed: ${Flags.tlsClusterIssuerType.name}`, error);
}
},
};
public static readonly enableHederaExplorerTls: CommandFlag = {
constName: 'enableHederaExplorerTls',
name: 'enable-hedera-explorer-tls',
definition: {
describe:
'Enable the Hedera Explorer TLS, defaults to false, requires certManager and certManagerCrds, which can be deployed through solo-cluster-setup chart or standalone',
defaultValue: false,
type: 'boolean',
},
prompt: async function promptEnableHederaExplorerTls(
task: SoloListrTaskWrapper<AnyListrContext>,
input: boolean,
): Promise<boolean> {
return await Flags.promptToggle(
task,
input,
Flags.enableHederaExplorerTls.definition.defaultValue as boolean,
'Would you like to enable the Hedera Explorer TLS? ',
null,
Flags.enableHederaExplorerTls.name,
);
},
};
public static readonly hederaExplorerStaticIp: CommandFlag = {
constName: 'hederaExplorerStaticIp',
name: 'hedera-explorer-static-ip',
definition: {
describe: 'The static IP address to use for the Hedera Explorer load balancer, defaults to ""',
defaultValue: '',
type: 'string',
},
prompt: undefined,
};
public static readonly hederaExplorerTlsHostName: CommandFlag = {
constName: 'hederaExplorerTlsHostName',
name: 'hedera-explorer-tls-host-name',
definition: {
describe: 'The host name to use for the Hedera Explorer TLS, defaults to "explorer.solo.local"',
defaultValue: 'explorer.solo.local',
type: 'string',
},
prompt: async function promptHederaExplorerTlsHostName(
task: SoloListrTaskWrapper<AnyListrContext>,
input: string,
): Promise<string> {
return await Flags.promptText(
task,
input,
Flags.hederaExplorerTlsHostName.definition.defaultValue as string,
'Enter the host name to use for the Hedera Explorer TLS: ',
null,
Flags.hederaExplorerTlsHostName.name,
);
},
};
public static readonly deletePvcs: CommandFlag = {
constName: 'deletePvcs',
name: 'delete-pvcs',
definition: {
describe:
'Delete the persistent volume claims. If both --delete-pvcs and --delete-secrets are set to true, the namespace will be deleted.',
defaultValue: false,
type: 'boolean',
},
prompt: async function promptDeletePvcs(
task: SoloListrTaskWrapper<AnyListrContext>,
input: boolean,
): Promise<boolean> {
return await Flags.promptToggle(
task,
input,
Flags.deletePvcs.definition.defaultValue as boolean,
'Would you like to delete persistent volume claims upon uninstall? ',
null,
Flags.deletePvcs.name,
);
},
};
public static readonly deleteSecrets: CommandFlag = {
constName: 'deleteSecrets',
name: 'delete-secrets',
definition: {
describe:
'Delete the network secrets. If both --delete-pvcs and --delete-secrets are set to true, the namespace will be deleted.',
defaultValue: false,
type: 'boolean',
},
prompt: async function promptDeleteSecrets(
task: SoloListrTaskWrapper<AnyListrContext>,
input: boolean,
): Promise<boolean> {
return await Flags.promptToggle(
task,
input,
Flags.deleteSecrets.definition.defaultValue as boolean,