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
console.log(colors.green(`If you had any issues with the installation please report them at: ${colors.blue('https://github.com/codefresh-io/cli/issues/new')}`));
Copy file name to clipboardExpand all lines: lib/interface/cli/commands/hybrid/upgrade.cmd.js
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -62,13 +62,19 @@ const upgradeCmd = new Command({
62
62
.option('kube-config-path',{
63
63
describe: 'Path to kubeconfig file (default is $HOME/.kube/config)',
64
64
})
65
+
.option('install-monitor',{
66
+
describe: 'Install a monitoring component that will help provide valueable data about your cluster to Codefresh (only useable when running migration)',
67
+
type: 'boolean',
68
+
default: true,
69
+
})
65
70
.option('verbose',{
66
71
describe: 'Print logs',
67
72
}),
68
73
handler: async(argv)=>{
69
74
const{
70
75
'kube-config-path': kubeConfigPath,
71
76
'agent-name': agentName,
77
+
'install-monitor': installMonitor,
72
78
verbose,
73
79
}=argv;
74
80
let{
@@ -162,6 +168,7 @@ const upgradeCmd = new Command({
0 commit comments