You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/interface/cli/commands/monitor/install.cmd.js
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,9 @@ const installMonitorCmd = new Command({
37
37
describe: 'The prefix for the container registry that will be used for pulling the required components images. Example: --docker-registry="docker.io"',
38
38
type: 'string',
39
39
})
40
+
.option('values',{
41
+
describe: 'specify values in a YAML file',
42
+
})
40
43
.option('verbose',{
41
44
describe: 'Print logs',
42
45
}),
@@ -50,6 +53,7 @@ const installMonitorCmd = new Command({
50
53
'kube-namespace': kubeNamespace,
51
54
'docker-registry': dockerRegistry,
52
55
verbose,
56
+
values: valuesFile,
53
57
// noExit,
54
58
}=argv;
55
59
constbinLocation=awaitdownloadVeonona();
@@ -98,6 +102,9 @@ const installMonitorCmd = new Command({
0 commit comments